signOutWithMode method
The function signOutWithMode signs out the client with the specified mode and from all devices if specified.
Args: mode (ClientSignOutMode): The mode parameter is of type ClientSignOutMode, which is an enum that represents the sign out mode. fromAllDevices (bool): A boolean value indicating whether the sign out should be applied to all devices or just the current device.
Implementation
Future<void> signOutWithMode(
ClientSignOutMode mode, bool fromAllDevices) async {
return _methods.signOutWithMode(mode, fromAllDevices);
}