ReportRowMetricValue.fromJson constructor
ReportRowMetricValue.fromJson(
- Map json_
Implementation
ReportRowMetricValue.fromJson(core.Map json_)
: this(
doubleValue: (json_['doubleValue'] as core.num?)?.toDouble(),
integerValue: json_['integerValue'] as core.String?,
microsValue: json_['microsValue'] as core.String?,
);