factory HeartRateData.fromJson(Map<String, dynamic> json) => HeartRateData( timestamp: json["timestamp"] ?? 0, hr: json["hr"] ?? 0, );