Files
fcs/lib/vo/radio.dart

5 lines
91 B
Dart
Raw Normal View History

2020-06-30 16:27:56 +06:30
class RadioGroup {
String text;
dynamic index;
RadioGroup({this.text, this.index});
}