SheetsChartProperties.fromJson constructor

SheetsChartProperties.fromJson(
  1. Map json_
)

Implementation

SheetsChartProperties.fromJson(core.Map json_)
  : this(
      chartImageProperties:
          json_.containsKey('chartImageProperties')
              ? ImageProperties.fromJson(
                json_['chartImageProperties']
                    as core.Map<core.String, core.dynamic>,
              )
              : null,
    );