BlocEventChannelDebuggerProvider constructor

const BlocEventChannelDebuggerProvider({
  1. required Widget child,
  2. Key? key,
  3. BlocEventChannelDebugger create(
    1. BuildContext,
    2. BlocEventChannel? parentChannel
    )?,
})

create creates the instance of the BlocEventChannelDebugger to be provided.

Implementation

const BlocEventChannelDebuggerProvider({
  required this.child,
  super.key,
  this.create,
});