onCreate method
Called whenever a Bloc
is instantiated.
In many cases, a cubit may be lazily instantiated and
onCreate can be used to observe exactly when the cubit
instance is created.
Implementation
@override
void onCreate(BlocBase<Object?> bloc) {
super.onCreate(bloc);
log('\x1B[32m${bloc.runtimeType}()');
}