getCart abstract method

  1. @GET("/cart")
Future getCart({
  1. @Header("Authorization") required String token,
  2. @Query("uuid") required String uuid,
})

Implementation

@GET("/cart")
Future<dynamic> getCart(
    {@Header("Authorization") required String token,
    @Query("uuid") required String uuid});