1
0
mirror of https://github.com/nisrulz/flutter-examples.git synced 2025-11-09 04:58:58 +00:00
Files
flutter-examples/bmi_calculator/lib/body_model.dart
2023-10-12 18:08:26 +02:00

20 lines
246 B
Dart

enum Sex {
male,
female,
}
// User body model class
class BodyModel {
Sex sex;
int height;
int weight;
int age;
BodyModel({
required this.sex,
required this.height,
required this.weight,
required this.age,
});
}