HealthStatusList.fromMap constructor
Implementation
factory HealthStatusList.fromMap(Map<String, dynamic> map) {
return HealthStatusList(
total: map['total'],
statuses: List<HealthStatus>.from(
map['statuses'].map((p) => HealthStatus.fromMap(p))),
);
}