toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final metricName = this.metricName;
  final metricNamespace = this.metricNamespace;
  final metricValue = this.metricValue;
  final defaultValue = this.defaultValue;
  return {
    'metricName': metricName,
    'metricNamespace': metricNamespace,
    'metricValue': metricValue,
    if (defaultValue != null) 'defaultValue': defaultValue,
  };
}