nc-photos/app/lib/bloc_util.dart
2023-05-30 00:57:16 +08:00

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;
}