deauthorize static method

Future deauthorize()

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']);
  }
}