BMFBaseVehicleInfo constructor Null safety

BMFBaseVehicleInfo(
  1. {String? name,
  2. String? departureStation,
  3. String? arriveStation,
  4. String? departureTime,
  5. String? arriveTime}
)

有参构造

Implementation

BMFBaseVehicleInfo({
  this.name,
  this.departureStation,
  this.arriveStation,
  this.departureTime,
  this.arriveTime,
});