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