Product constructor
Product({})
Implementation
Product({
String? id,
required this.name,
required this.description,
required this.price,
required this.type,
required this.listingType,
required this.sellerId,
this.location,
DateTime? createdAt,
this.images,
this.isAvailable = true,
}) : id = id ?? const Uuid().v4(),
createdAt = createdAt ?? DateTime.now();