signOutWithMode method

Future<void> signOutWithMode(
  1. ClientSignOutMode mode,
  2. bool fromAllDevices
)

Implementation

Future<void> signOutWithMode(
    ClientSignOutMode mode, bool fromAllDevices) async {
  await methodChannel.invokeMethod("Client/signOutWithMode", {
    "mode": mode.clientSignOutModeAsString(),
    "fromAllDevices": fromAllDevices
  });
}