toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final healthError = this.healthError;
  final healthy = this.healthy;
  final instructions = this.instructions;
  return {
    'healthError': ?healthError,
    'healthy': ?healthy,
    'instructions': ?instructions,
  };
}