toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final closeTime = this.closeTime;
  final log = this.log;
  final metadata = this.metadata;
  final metric = this.metric;
  final name = this.name;
  final openTime = this.openTime;
  final policy = this.policy;
  final resource = this.resource;
  final state = this.state;
  return {
    'closeTime': ?closeTime,
    'log': ?log,
    'metadata': ?metadata,
    'metric': ?metric,
    'name': ?name,
    'openTime': ?openTime,
    'policy': ?policy,
    'resource': ?resource,
    'state': ?state,
  };
}