chevrolet_app/lib/model/car.dart

20 lines
333 B
Dart
Raw Normal View History

2019-02-10 17:30:51 +00:00
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,
);
}