TKK_E32221220/lib/models/bmi_model.dart

14 lines
288 B
Dart

class BmiModel {
final double value;
final String time;
BmiModel({required this.value, required this.time});
factory BmiModel.fromMap(Map<String, dynamic> map) {
return BmiModel(
value: (map['value'] as num).toDouble(),
time: map['time'] as String,
);
}
}