logout method Null safety
Logout of Wialon
Implementation
Future<void> logout() async {
await call(method: 'core/logout', parameters: {'action': 'logout'});
_userId = null;
sessionId = null;
}
Logout of Wialon
Future<void> logout() async {
await call(method: 'core/logout', parameters: {'action': 'logout'});
_userId = null;
sessionId = null;
}