logoutAll method
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);
}
Logs out the current user from all devices
token The user ID to logout from all devices
Future<void> logoutAll(dynamic token) async {
await _guardInstance.logoutAll(token);
}