logout method
An app user logs out.
Param unbindDeviceToken Whether to unbind the token when logout.
true (default) Yes.
false No.
Throws A description of the exception. See {@link EMError}.
Implementation
Future<void> logout([
bool unbindDeviceToken = true,
]) async {
await EMClient.getInstance.logout(unbindDeviceToken);
}