5 lines
76 B
Dart
5 lines
76 B
Dart
class LanguageState {
|
|
final String value;
|
|
|
|
LanguageState(this.value);
|
|
}
|