14 lines
196 B
Dart
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;
|
|
}
|
|
}
|