ErrorBlocListener<T> constructor

const ErrorBlocListener<T>({
  1. required Widget child,
  2. required Future<T> errorHandler(
    1. BuildContext context,
    2. ErrorProcessing state
    ),
  3. Key? key,
})

Implementation

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