getActiveOffers<T> method

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

Returns a list of active ads (offers) which executed by the user will bring him/her respective number of votes to his balance in the application.

Implementation

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