catchAsyncError method

Future<bool> catchAsyncError(
  1. Object error
)

Catch it if the initAsync() throws an error WITH GREAT POWER COMES GREAT RESPONSIBILITY Return true to ignore the error, false to continue the error handling

Implementation

Future<bool> catchAsyncError(Object error) async => false;