22 lines
344 B
Dart
22 lines
344 B
Dart
class CardData {
|
|
|
|
final String? name;
|
|
final String? surname;
|
|
final String? description;
|
|
final String? imageUrl;
|
|
final int? age;
|
|
final double? distance;
|
|
|
|
final String? id;
|
|
|
|
|
|
const CardData(
|
|
{this.name,
|
|
this.surname,
|
|
this.description,
|
|
this.imageUrl,
|
|
this.age,
|
|
this.distance,
|
|
this.id});
|
|
}
|