FastAppLifecycleBloc constructor
FastAppLifecycleBloc()
Factory constructor to provide a singleton instance. This ensures the class has only one instance and provides a global point of access to it.
Implementation
factory FastAppLifecycleBloc() {
if (!_hasBeenInstantiated) {
_instance = FastAppLifecycleBloc._();
_hasBeenInstantiated = true;
}
return instance;
}