mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-22 16:56:19 +01:00
13 lines
306 B
Dart
13 lines
306 B
Dart
mixin BlocLogger {
|
|
String? get tag => null;
|
|
|
|
bool Function(dynamic currentState, dynamic nextState)? get shouldLog => null;
|
|
}
|
|
|
|
/// 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;
|
|
}
|