getELoadOrderHistory abstract method
- @GET.new(Api.getStockOrderHistory)
Future<StockOrderHistoryModel>
getELoadOrderHistory(
{ - @Query.new("offset") required int offset,
- @Query.new("limit") required int limit,
- @Query.new("transactionType") required String transactionType,
- @Query.new("transactionSubType") required String transactionSubType,
- @Query.new("fromDate") String? fromDate,
- @Query.new("toDate") String? toDate,
})
Implementation
@GET(Api.getStockOrderHistory)
Future<StockOrderHistoryModel> getELoadOrderHistory({
@Query("offset") required int offset,
@Query("limit") required int limit,
@Query("transactionType") required String transactionType,
@Query("transactionSubType") required String transactionSubType,
@Query("fromDate") String? fromDate,
@Query("toDate") String? toDate,
});