getCollectHistoryAssets abstract method
- @GET.new("${Api.getCollectHistoryAssets}/{type}/assets")
Future<CollectHistoryAssetsModel>
getCollectHistoryAssets(
{ - @Query.new("search") String? search,
- @Path.new("type") required String type,
- @Query.new("limit") int limit = 10,
- @Query.new("offset") int? offset,
- @Query.new("productCode") required String productCode,
- @Query.new("assetsTransactionId") required String assetsTransactionId,
})
Implementation
@GET("${Api.getCollectHistoryAssets}/{type}/assets")
Future<CollectHistoryAssetsModel> getCollectHistoryAssets({
@Query("search") String? search,
@Path("type") required String type,
@Query("limit") int limit = 10,
@Query("offset") int? offset,
@Query("productCode") required String productCode,
@Query("assetsTransactionId") required String assetsTransactionId,
});