Files
fcs/lib/vo/radio.dart
2020-07-01 08:12:59 +06:30

5 lines
87 B
Dart

class RadioGroup {
String text;
int index;
RadioGroup({this.text, this.index});
}