6 lines
88 B
Dart
6 lines
88 B
Dart
class Car {
|
|
Car({required this.id, required this.plate});
|
|
|
|
int id;
|
|
String plate;
|
|
} |