isAuthorizationInProgress property

Future<bool> get isAuthorizationInProgress

Implementation

static Future<bool> get isAuthorizationInProgress async {
  try {
    bool isAuthorizationInProgress =
        await _channel.invokeMethod('isAuthorizationInProgress');
    return isAuthorizationInProgress;
  } on PlatformException catch (ex) {
    throw ReaderSdkException(ex.code, ex.message, ex.details['debugCode'],
        ex.details['debugMessage']);
  }
}