fromJson static method
Deserializes the result from JSON.
Implementation
static Health fromJson(Map<String, dynamic> json) {
return Health(_healthStatusIndex.lookupBySimpleName(json['status'] as String));
}
Deserializes the result from JSON.
static Health fromJson(Map<String, dynamic> json) {
return Health(_healthStatusIndex.lookupBySimpleName(json['status'] as String));
}