add<T> method

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

Adds the specified object to the 'Likes' list of the current user.

Implementation

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