mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-22 16:56:19 +01:00
11 lines
221 B
Dart
11 lines
221 B
Dart
abstract class BlocTag {
|
|
String get tag;
|
|
}
|
|
|
|
/// Wrap around a string such that two strings with the same value will fail
|
|
/// the identical check
|
|
class StateMessage {
|
|
StateMessage(this.value);
|
|
|
|
final String value;
|
|
}
|