$MetricOrderBy.fromJson constructor

$MetricOrderBy.fromJson(
  1. Map json_
)

Implementation

$MetricOrderBy.fromJson(core.Map json_)
    : this(
        metricName: json_.containsKey('metricName')
            ? json_['metricName'] as core.String
            : null,
      );