BMFPlaneVehicleInfo.fromMap constructor Null safety

BMFPlaneVehicleInfo.fromMap(
  1. Map map
)

map => BMFPlaneVehicleInfo

Implementation

BMFPlaneVehicleInfo.fromMap(Map map) : super.fromMap(map) {
  price = map['price'];
  discount = map['discount'];
  airlines = map['airlines'];
  bookingUrl = map['bookingUrl'];
}