toJson method

Map<String, dynamic> toJson()

Implementation

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