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