part of 'session_bloc.dart'; @immutable abstract class SessionEvent extends Equatable { const SessionEvent(); @override List get props => []; } class SessionStart extends SessionEvent { const SessionStart(); @override List get props => []; }