isUserResolvableError method

Future<bool> isUserResolvableError(
  1. int errorCode, [
  2. bool? usePendingIntent
])

Checks whether an exception is rectified through user operations.

Implementation

Future<bool> isUserResolvableError(int errorCode,
    [bool? usePendingIntent]) async {
  return await _channel.invokeMethod("isUserResolvableError",
      {'errorCode': errorCode, 'usePendingIntent': usePendingIntent ?? null});
}