Vehicle constructor Null safety

Vehicle(
  1. {String? id,
  2. required RouteWay routeWay,
  3. String? name}
)

Implementation

Vehicle({
  this.id,
  required this.routeWay,
  this.name,
});