TableRowStyleSuggestionState.fromJson constructor

TableRowStyleSuggestionState.fromJson(
  1. Map json_
)

Implementation

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