SuggestedTableCellStyle.fromJson constructor

SuggestedTableCellStyle.fromJson(
  1. Map json_
)

Implementation

SuggestedTableCellStyle.fromJson(core.Map json_)
  : this(
      tableCellStyle: json_.containsKey('tableCellStyle')
          ? TableCellStyle.fromJson(
              json_['tableCellStyle'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      tableCellStyleSuggestionState:
          json_.containsKey('tableCellStyleSuggestionState')
          ? TableCellStyleSuggestionState.fromJson(
              json_['tableCellStyleSuggestionState']
                  as core.Map<core.String, core.dynamic>,
            )
          : null,
    );