onBusy method

  1. @override
void onBusy(
  1. R bloc, {
  2. String? event,
})
override

Called whenever the bloc is set to busy

Implementation

@override
void onBusy(R bloc, {String? event}) {
  _log.info('Busy by ${bloc.runtimeType}:\n'
      '    at event: $event');
}