SizeSuggestionState.fromJson constructor
SizeSuggestionState.fromJson(
- Map json_
Implementation
SizeSuggestionState.fromJson(core.Map json_)
: this(
heightSuggested: json_.containsKey('heightSuggested')
? json_['heightSuggested'] as core.bool
: null,
widthSuggested: json_.containsKey('widthSuggested')
? json_['widthSuggested'] as core.bool
: null,
);