TenantBloc constructor

TenantBloc()

Constructs an instance of TenantBloc.

Implementation

TenantBloc() : super(TenantInitial()) {
  on<TenantInitialEvent>(_onTenantInitial);
  on<TenantLoadingEvent>(_onTenantLoading);
  on<TenantLoadedEvent>(_onTenantLoaded);
}