Skip to content

Instantly share code, notes, and snippets.

@perymerdeka
Created October 24, 2021 15:14
Show Gist options
  • Save perymerdeka/13ed0fc5330df17d7704c668df1b381f to your computer and use it in GitHub Desktop.
Save perymerdeka/13ed0fc5330df17d7704c668df1b381f to your computer and use it in GitHub Desktop.
my store product models
class Product {
final String id;
final String title;
final String description;
final double price;
final String imageUrl;
bool isFavorite;
Product({
required this.id,
required this.title,
required this.description,
required this.price,
required this.imageUrl,
this.isFavorite = false,
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment