TestResponseHandlerWidget<B extends ErrorPublisherBloc> constructor

const TestResponseHandlerWidget<B extends ErrorPublisherBloc>({
  1. Key? key,
  2. required dynamic onError(
    1. PublishedErrorType
    ),
  3. required Widget child,
})

Implementation

const TestResponseHandlerWidget(
    {Key? key, required this.onError, required this.child})
    : super(key: key);