fix: Correct formatting and improve comments in various files for clarity

This commit is contained in:
Achintha Isuru
2026-03-02 12:38:57 -05:00
parent a13cadefc8
commit 8497709356
6 changed files with 21 additions and 23 deletions

View File

@@ -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(),
);
}