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