BMFTaxiInfo constructor Null safety

BMFTaxiInfo(
  1. {String? desc,
  2. int? distance,
  3. int? duration,
  4. double? perKMPrice,
  5. double? startPrice,
  6. double? totalPrice}
)

有参构造

Implementation

BMFTaxiInfo({
  this.desc,
  this.distance,
  this.duration,
  this.perKMPrice,
  this.startPrice,
  this.totalPrice,
});