Commit 419c886
Changed files (1)
lib
model
lib/model/blood_pressure.dart
@@ -95,7 +95,8 @@ class BloodPressureModel extends ChangeNotifier {
e['systolic'] as int,
e['diastolic'] as int,
e['pulse'] as int,
- e['notes'] as String));
+ e['notes'].toString())
+ );
}
return UnmodifiableListView(recordsInRange);
}