addChatUser<T> method

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

Adds a new user to a chat.

Implementation

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