getList<T> method

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

Returns a list of IDs of users who added the specified object to their 'Likes' list.

Implementation

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