Firebase에 더미 데이터 업로드 과정1. 프로젝트 구조 설계ProductModel 설계class ProductModel { final String productId; // 제품 고유 ID final String name; // 제품명 final String brandName; // 브랜드명 final List productImageList; // 제품 이미지 URL 리스트 final List descriptionImageList; // 제품 설명 이미지 URL 리스트 final String price; // 가격 final int discountPercent; // 할인율 final String c..