onBusy method

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

Called whenever the bloc is set to busy

Implementation

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