toJson method
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,
};
}