fix: Correct formatting and improve comments in various files for clarity
This commit is contained in:
@@ -59,7 +59,7 @@ class CoreBlocObserver extends BlocObserver {
|
||||
super.onChange(bloc, change);
|
||||
if (logStateChanges) {
|
||||
developer.log(
|
||||
'State: ${change.currentState.runtimeType} → ${change.nextState.runtimeType}',
|
||||
'State: ${change.currentState.runtimeType}’ ${change.nextState.runtimeType}',
|
||||
name: bloc.runtimeType.toString(),
|
||||
);
|
||||
}
|
||||
@@ -109,7 +109,7 @@ class CoreBlocObserver extends BlocObserver {
|
||||
super.onTransition(bloc, transition);
|
||||
if (logStateChanges) {
|
||||
developer.log(
|
||||
'Transition: ${transition.event.runtimeType} → ${transition.nextState.runtimeType}',
|
||||
'Transition: ${transition.event.runtimeType}’ ${transition.nextState.runtimeType}',
|
||||
name: bloc.runtimeType.toString(),
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user