mirror of
https://github.com/sadaks-me/chevrolet_app
synced 2025-01-09 19:03:14 +00:00
20 lines
333 B
Dart
20 lines
333 B
Dart
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
class CarModel {
|
||
|
final String brand;
|
||
|
final String model;
|
||
|
final String year;
|
||
|
final String description;
|
||
|
final String production;
|
||
|
final ImageProvider image;
|
||
|
|
||
|
CarModel(
|
||
|
this.brand,
|
||
|
this.model,
|
||
|
this.description,
|
||
|
this.production,
|
||
|
this.year,
|
||
|
this.image,
|
||
|
);
|
||
|
}
|