chevrolet_app/lib/model/car.dart
2019-02-10 23:00:51 +05:30

19 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,
);
}