delete<T> method

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

Deletes the specified object from the 'Likes' list of the current user.

Implementation

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