Pibd-33_Tikhonenkov_Alexey_PMU/lib/domain/quote.dart
2024-12-18 13:10:57 +04:00

15 lines
293 B
Dart

class Quote {
final String text;
final String author;
final String imagePath;
final String id;
bool isFavorite;
Quote(this.text, this.author, this.imagePath, this.id,[this.isFavorite = false]);
bool toggleFavorite() {
isFavorite = !isFavorite;
return isFavorite;
}
}