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