toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final name = this.name;
  final reason = this.reason;
  final state = this.state;
  final updateTime = this.updateTime;
  return {
    'name': ?name,
    'reason': ?reason,
    'state': ?state,
    'updateTime': ?updateTime,
  };
}