factory HealthStatus.fromMap(Map<String, dynamic> map) { return HealthStatus( ping: map['ping'], status: map['status'].toString(), ); }