Car constructor
Car({})
Implementation
Car({
required this.name,
required this.price,
required this.image,
required this.desc,
required this.isAvailable,
this.rentalInfo = '',
this.isFavorite = false,
}) : id = uuid.v4();