refactor power

This commit is contained in:
2026-04-07 11:55:01 +02:00
parent 130780cbb8
commit f4d3ec4bca
12 changed files with 157 additions and 74 deletions

View File

@@ -0,0 +1,10 @@
part of 'session_bloc.dart';
abstract class SessionEvent {}
class AppStarted extends SessionEvent {}
class UserChanged extends SessionEvent {
final String? userId;
UserChanged(this.userId);
}