9 lines
180 B
Dart
9 lines
180 B
Dart
|
import 'dart:ui';
|
||
|
|
||
|
class CardItem{
|
||
|
Image image;
|
||
|
String title, description;
|
||
|
int caloriesSummary;
|
||
|
|
||
|
CardItem(this.image, this.title, this.description, this.caloriesSummary);
|
||
|
}
|