getOrderListShop abstract method

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

Implementation

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