getAllComments<T> method

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

Returns a list of comments on a specific photo album or all albums of the user sorted in reverse chronological order.

Implementation

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