logout method
- [bool unbindDeviceToken = true]
Logs out.
Param unbindDeviceToken
Whether to unbind the token upon logout.
true
(default) Yes.
false
No.
Throws A description of the exception. See ChatError.
Implementation
Future<void> logout([
bool unbindDeviceToken = true,
]) async {
EMLog.v('logout unbindDeviceToken: $unbindDeviceToken');
Map req = {'unbindToken': unbindDeviceToken};
Map result = await ClientChannel.invokeMethod(ChatMethodKeys.logout, req);
try {
ChatError.hasErrorFromResult(result);
_clearAllInfo();
} on ChatError catch (e) {
throw e;
}
}