ShadingSuggestionState.fromJson constructor

ShadingSuggestionState.fromJson(
  1. Map json_
)

Implementation

ShadingSuggestionState.fromJson(core.Map json_)
    : this(
        backgroundColorSuggested:
            json_.containsKey('backgroundColorSuggested')
                ? json_['backgroundColorSuggested'] as core.bool
                : null,
      );