PostalAddress constructor

PostalAddress({
  1. int revision = 0,
  2. String regionCode = '',
  3. String languageCode = '',
  4. String postalCode = '',
  5. String sortingCode = '',
  6. String administrativeArea = '',
  7. String locality = '',
  8. String sublocality = '',
  9. List<String> addressLines = const [],
  10. List<String> recipients = const [],
  11. String organization = '',
})

Implementation

PostalAddress({
  this.revision = 0,
  this.regionCode = '',
  this.languageCode = '',
  this.postalCode = '',
  this.sortingCode = '',
  this.administrativeArea = '',
  this.locality = '',
  this.sublocality = '',
  this.addressLines = const [],
  this.recipients = const [],
  this.organization = '',
}) : super(fullyQualifiedName);