PIbd-32_Shabunov_O.A._Mobil.../lib/domain/models/card.dart

18 lines
314 B
Dart
Raw Normal View History

2024-10-03 01:00:26 +04:00
import 'package:flutter/material.dart';
class CardData {
final String title;
final String description;
final IconData icon;
final String? imageUrl;
2024-12-12 13:54:24 +04:00
final String? id;
2024-10-03 01:00:26 +04:00
CardData({
required this.title,
required this.description,
this.icon = Icons.adb,
this.imageUrl,
2024-12-12 13:54:24 +04:00
this.id,
2024-10-03 01:00:26 +04:00
});
}