21 lines
461 B
Dart
21 lines
461 B
Dart
class SelectedFavorite {
|
|
final String id;
|
|
final String outletId;
|
|
final String? image;
|
|
final String name;
|
|
final double totalSold;
|
|
final double averageRating;
|
|
final double sellingPrice;
|
|
final int likes;
|
|
|
|
const SelectedFavorite({
|
|
required this.id,
|
|
required this.outletId,
|
|
this.image,
|
|
required this.name,
|
|
required this.totalSold,
|
|
required this.averageRating,
|
|
required this.sellingPrice,
|
|
required this.likes,
|
|
});
|
|
} |