factory EcgBean.fromJson(Map<String, dynamic> json) => EcgBean( type: json["type"], ints: List<int>.from((json["ints"] ?? []).map((x) => x)), date: json["date"] ?? "", );