Vehicle constructor

const Vehicle({
  1. String? name,
  2. VehicleType? type,
  3. String? icon,
  4. String? localIcon,
})

Implementation

const Vehicle({
  this.name,
  this.type,
  this.icon,
  this.localIcon,
});