TIMAddressComponent constructor

TIMAddressComponent({
  1. String? country,
  2. String? province,
  3. String? city,
  4. String? district,
  5. String? town,
})

Constructor of TIMAddressComponent / 有参构造

Implementation

TIMAddressComponent({
  this.country,
  this.province,
  this.city,
  this.district,
  this.town,
});