2024-10-23 16:00:47 +04:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
|
|
|
class CarData {
|
|
|
|
final String text;
|
|
|
|
final String descriptionCar;
|
|
|
|
final IconData icon;
|
|
|
|
final String? imageUrl;
|
2024-12-18 10:25:51 +04:00
|
|
|
final String? id;
|
2024-10-23 16:00:47 +04:00
|
|
|
|
|
|
|
CarData(
|
|
|
|
this.text, {
|
|
|
|
required this.descriptionCar,
|
|
|
|
this.icon = Icons.ac_unit_outlined,
|
2024-12-18 10:25:51 +04:00
|
|
|
this.imageUrl, this.id,
|
2024-10-23 16:00:47 +04:00
|
|
|
});
|
|
|
|
}
|