13 lines
243 B
Dart
Raw Permalink Normal View History

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