isAuthorized property

Future<bool> get isAuthorized

Implementation

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