onError method

void onError(
  1. FlutterErrorDetails details
)

The 'App Level' Error Handler. Override if you like to customize your error handling.

Implementation

void onError(FlutterErrorDetails details) {
  // Call the App's 'current' error handler.
  v.App?.onError(details);
}