7 lines
105 B
Dart
7 lines
105 B
Dart
|
|
class Cargo {
|
||
|
|
String type;
|
||
|
|
int price;
|
||
|
|
int weight;
|
||
|
|
Cargo({this.type, this.price, this.weight});
|
||
|
|
}
|