5 lines
91 B
Dart
5 lines
91 B
Dart
class RadioGroup {
|
|
String text;
|
|
dynamic index;
|
|
RadioGroup({this.text, this.index});
|
|
} |