Files
fcs/lib/vo/radio.dart

5 lines
87 B
Dart
Raw Normal View History

2020-06-30 16:27:56 +06:30
class RadioGroup {
String text;
2020-07-01 08:12:59 +06:30
int index;
2020-06-30 16:27:56 +06:30
RadioGroup({this.text, this.index});
}