BaseArchBloc<S> constructor
BaseArchBloc<S> (
- S initialState
Constructor for the BaseArchBloc class.
Initializes the BaseArchBloc with initialState
,
registers events, and executes startup events.
Implementation
BaseArchBloc(S initialState) : super(initialState) {
registerEvents();
executeStartupEvents();
}