generateListeners method

  1. @override
List<BlocEventListener> generateListeners(
  1. BlocEventChannel channel
)

Generates the listener map that this Repository will remove from the channel when this repository is disposed.

This method is assumed to have added the listeners to the channel itself.

Implementation

@override
List<BlocEventListener<dynamic>> generateListeners(BlocEventChannel channel) {
  // DO NOTHING
  return [];
}