Run dart format lib

This commit is contained in:
2024-12-19 12:26:28 +01:00
parent 50ae080841
commit 013f318df7
6 changed files with 40 additions and 29 deletions

View File

@@ -11,7 +11,7 @@ class PlayerStateBloc extends Bloc<Event, PlayerState?> {
emit(event.playerState);
});
on <ClearPlayerState>((event, emit) {
on<ClearPlayerState>((event, emit) {
emit(null);
});