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 _methodChannel.invokeMethod(
    'isUserResolvableError',
    <String, dynamic>{
      'errorCode': errorCode,
      'usePendingIntent': usePendingIntent,
    },
  );
}