searchConversations<T> method

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

Returns a list of the current user's conversations that match search criteria.

Implementation

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