deauthorize static method
Implementation
static Future deauthorize() async {
try {
await _channel.invokeMethod('deauthorize');
} on PlatformException catch (ex) {
throw ReaderSdkException(ex.code, ex.message, ex.details['debugCode'],
ex.details['debugMessage']);
}
}