onAsyncError method

  1. @override
bool onAsyncError(
  1. FlutterErrorDetails details
)
override

Supply an 'error handler' routine if something goes wrong in the corresponding initAsync() routine.

Implementation

@override
bool onAsyncError(FlutterErrorDetails details) {
  /// Supply an 'error handler' routine if something goes wrong
  /// in the corresponding initAsync() routine.
  /// Returns true if the error was properly handled.
  return false;
}