getConversations<T> method

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

Returns a list of the current user's conversations.

Implementation

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