logoutAll method

Future<void> logoutAll(
  1. dynamic token
)

Logs out the current user from all devices

token The user ID to logout from all devices

Implementation

Future<void> logoutAll(dynamic token) async {
  await _guardInstance.logoutAll(token);
}