1
0
Fork 0
mirror of https://gitlab.com/nkming2/nc-photos.git synced 2025-04-08 00:11:38 +02:00
nc-photos/app/lib/bloc_util.dart

12 lines
221 B
Dart
Raw Normal View History

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