2023-04-13 17:32:31 +02:00
|
|
|
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;
|
|
|
|
}
|