toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final healthSources = this.healthSources;
final healthState = this.healthState;
final kind = this.kind;
return {
'healthSources': ?healthSources,
'healthState': ?healthState,
'kind': ?kind,
};
}