nc-photos/app/lib/bloc_util.dart

12 lines
221 B
Dart
Raw Normal View History

abstract class BlocTag {
String get tag;
}
2023-05-29 18:55:10 +02:00
/// 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;
}