toJson method

Map<String, dynamic> toJson()

Implementation

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