getById<T> method

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

Returns information about market items by their ids.

Implementation

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