APP_NEW/lib/Class/Form/physical_index_form.dart
2025-03-11 21:17:14 +08:00

14 lines
196 B
Dart

class PhysicalIndexForm {
late int age;
late bool gender;
late num weight;
late num height;
PhysicalIndexForm() {
age = 0;
gender = false;
weight = 0;
height = 0;
}
}