SheetsChartReferenceSuggestionState.fromJson constructor

SheetsChartReferenceSuggestionState.fromJson(
  1. Map json_
)

Implementation

SheetsChartReferenceSuggestionState.fromJson(core.Map json_)
    : this(
        chartIdSuggested: json_.containsKey('chartIdSuggested')
            ? json_['chartIdSuggested'] as core.bool
            : null,
        spreadsheetIdSuggested: json_.containsKey('spreadsheetIdSuggested')
            ? json_['spreadsheetIdSuggested'] as core.bool
            : null,
      );