removeChatUser<T> method

Future<ApiResponse<T>> removeChatUser<T>(
  1. Map<String, Object> params
)

Allows the current user to leave a chat or, if the current user started the chat, allows the user to remove another user from the chat.

Implementation

Future<ApiResponse<T>> removeChatUser<T>(Map<String, Object> params) =>
    _api.request<T>('messages.removeChatUser', params);