getCollectHistoryAssets abstract method
- @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,
})
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,
});