PMU-PIbd-32-Fedorenko-G-Y/flutter_app/lib/domain/models/card.dart

25 lines
546 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-04 16:34:24 +04:00
final String firstName;
final String lastName;
final String fullName;
final String title;
final String family;
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,
});
}