toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final control = this.control;
  final createTime = this.createTime;
  final endTime = this.endTime;
  final metricLabels = this.metricLabels;
  final name = this.name;
  final startTime = this.startTime;
  final state = this.state;
  final treatment = this.treatment;
  final verdict = this.verdict;
  return {
    'control': ?control,
    'createTime': ?createTime,
    'endTime': ?endTime,
    'metricLabels': ?metricLabels,
    'name': ?name,
    'startTime': ?startTime,
    'state': ?state,
    'treatment': ?treatment,
    'verdict': ?verdict,
  };
}