import 'package:flutter/material.dart'; class CardData { final String text; final String descriprionText; final int weight; final IconData icon; final String? imageUrl; final bool isTop; CardData( this.text, { required this.descriprionText, required this.weight, this.icon = Icons.hail, this.imageUrl, this.isTop = false, }); }