AddressComponent constructor

AddressComponent({
  1. String? longName,
  2. String? shortName,
  3. List<String>? types,
})

Implementation

AddressComponent({
  this.longName,
  this.shortName,
  this.types,
});