import 'dart:ui';
class CardItem{
Image image;
String title, description;
int caloriesSummary;
CardItem(this.image, this.title, this.description, this.caloriesSummary);
}