ReportRowMetricValue.fromJson constructor

ReportRowMetricValue.fromJson(
  1. 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?,
      );