toJson method

Map<String, dynamic> toJson()

Implementation

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