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