onError method

  1. @override
void onError(
  1. FlutterErrorDetails details
)
override

Override if you like to customize your error handling.

Implementation

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