AddChartResponse.fromJson constructor
AddChartResponse.fromJson(
- Map json_
Implementation
AddChartResponse.fromJson(core.Map json_)
: this(
chart: json_.containsKey('chart')
? EmbeddedChart.fromJson(
json_['chart'] as core.Map<core.String, core.dynamic>)
: null,
);