onErrorHandler method

void onErrorHandler(
  1. FlutterErrorDetails details
)
inherited

Run the provided Error Handler if any.

Implementation

void onErrorHandler(FlutterErrorDetails details) {
  if (inErrorHandler != null) {
    inErrorHandler!(details);
  }
}