top of page

CUPCAKES NOT INCLUDED
☆Size☆
Cake wrap for 8" cake 25.3" (2 pieces 13" x 6")
Cake wrap for 10" cake 31.4" (2 pieces 15" x 6")
Cake wrap for 12" cake 37.7" (3 pieces 13.5" x 6")
Cupcake size 1.3" (18pcs)
Cupcake size 2" (9pcs)
Cake topper 4"
Cake topper 6"
Cake topper 8"
Cake topper 10"
Cake topper 12"
Cake topper 4"x6"
Cake topper 5"x7"
Cake topper 11"x7"
Cake topper 15"x10"

☆Product Highlights:

Fully edible checkers flag pattern
Custom shapes available upon request to match your party theme
Personalized color options to coordinate perfectly with your event decor
Easy to place on cakes, cupcakes, and other desserts (peel and apply)
Printed with vivid, long-lasting edible ink for sharp details and bright contrast
Suitable for fondant-covered cakes, buttercream cakes, and more

A creative way to impress guests with a custom-designed edible decoration

☆ Shelf Life ☆
The toppers last 3 months inside the bag. Keep them in the original packaging and avoid extreme temperatures (avoid refrigeration, pantry storage is recommended).

☆Description☆
The toppers are made with hypoallergenic ingredients (gluten-free, nut-free, peanut-free, dairy-free, soy-free), vegan.

 

Edible black and white checkered flag, Custom Checkers Pattern

$11.00Price
Color
Quantity
Choose File
bottom of page
import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RestController; import java.util.*; @RestController public class CheckoutController { @GetMapping("/checkout") public Map checkout( @RequestParam String products, @RequestParam(required = false) String coupon) { // Parse products Map productQuantities = new HashMap<>(); for (String productEntry : products.split(",")) { String[] parts = productEntry.split(":"); productQuantities.put( parts[0], // Product ID Integer.parseInt(parts[1]) // Quantity ); } // Build result Map result = new HashMap<>(); result.put("products", productQuantities); result.put("coupon", coupon != null ? coupon : "No coupon applied"); return result; } }