SizeSuggestionState.fromJson constructor

SizeSuggestionState.fromJson(
  1. Map json_
)

Implementation

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