32 lines
702 B
Dart
Raw Normal View History

import 'package:flutter/material.dart';
class CardData {
final String text;
final String descriptionText;
final IconData icon;
final String? imageUrl;
2024-11-12 00:23:53 +04:00
final String? firstName;
final String? lastName;
final String? fullName;
final String? title;
final String? family;
2024-11-14 14:28:07 +04:00
final int? id;
final String locationText;
final String speciesText;
2024-11-04 16:34:24 +04:00
CardData({
required this.text,
required this.descriptionText,
this.icon = Icons.people,
this.imageUrl,
required this.firstName,
required this.lastName,
required this.fullName,
required this.title,
required this.family,
2024-11-14 14:28:07 +04:00
this.id,
required this.locationText,
required this.speciesText,
2024-11-04 16:34:24 +04:00
});
2024-11-14 14:28:07 +04:00
}