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,
      );