BMFAddressComponent constructor Null safety

BMFAddressComponent(
  1. {String? country,
  2. String? province,
  3. String? city,
  4. String? district,
  5. String? town,
  6. String? streetName,
  7. String? streetNumber,
  8. String? adCode,
  9. String? countryCode,
  10. String? direction,
  11. String? distance}
)

有参构造

Implementation

BMFAddressComponent({
  this.country,
  this.province,
  this.city,
  this.district,
  this.town,
  this.streetName,
  this.streetNumber,
  this.adCode,
  this.countryCode,
  this.direction,
  this.distance,
});