15 lines
293 B
Dart
Raw Normal View History

2024-12-18 03:01:46 +04:00
class Quote {
final String text;
final String author;
final String imagePath;
2024-12-18 13:10:57 +04:00
final String id;
2024-12-18 03:01:46 +04:00
bool isFavorite;
2024-12-18 13:10:57 +04:00
Quote(this.text, this.author, this.imagePath, this.id,[this.isFavorite = false]);
2024-12-18 03:01:46 +04:00
2024-12-18 13:10:57 +04:00
bool toggleFavorite() {
2024-12-18 03:01:46 +04:00
isFavorite = !isFavorite;
2024-12-18 13:10:57 +04:00
return isFavorite;
2024-12-18 03:01:46 +04:00
}
}