16 lines
350 B
Dart
16 lines
350 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class CardDate{
|
|
final String text;
|
|
final String descriptionText;
|
|
final IconData icon;
|
|
final String? imageUrl;
|
|
|
|
CardDate(
|
|
this.text,
|
|
{
|
|
required this.descriptionText,
|
|
this.icon = Icons.ac_unit_outlined,
|
|
this.imageUrl = 'https://via.placeholder.com/150',
|
|
});
|
|
} |