ReportRowMetricValue.fromJson constructor

ReportRowMetricValue.fromJson(
  1. Map json_
)

Implementation

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