getOrderListShop abstract method

  1. @GET.new("/orderListShop")
Future getOrderListShop({
  1. @Header.new("Authorization") required String token,
  2. @Query.new("shopId") required String shopId,
})

Implementation

@GET("/orderListShop")
Future<dynamic> getOrderListShop({
  @Header("Authorization") required String token,
  @Query("shopId") required String shopId,
});