deauthenticate static method

Future<bool> deauthenticate()

Implementation

static Future<bool> deauthenticate() async {
  try {
    bool success = await _channel.invokeMethod('deauthenticate');
    return success;
  } on PlatformException catch (error) {
    return Future.error(error);
  }
}