ReportSummaryChartDataDataPoint.fromJson constructor

ReportSummaryChartDataDataPoint.fromJson(
  1. Map json_
)

Implementation

ReportSummaryChartDataDataPoint.fromJson(core.Map json_)
  : this(
      label: json_['label'] as core.String?,
      value: (json_['value'] as core.num?)?.toDouble(),
    );