toJson method

Map<String, dynamic> toJson()

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