Files
fcs/lib/vo/radio.dart
2020-06-30 16:27:56 +06:30

5 lines
91 B
Dart

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