BMFVehicleInfo constructor Null safety

BMFVehicleInfo(
  1. {String? uid,
  2. String? title,
  3. int? passStationNum,
  4. int? totalPrice,
  5. int? zonePrice}
)

有参构造

Implementation

BMFVehicleInfo({
  this.uid,
  this.title,
  this.passStationNum,
  this.totalPrice,
  this.zonePrice,
});