VCardAddress constructor

VCardAddress({
  1. VCardIdentifier? identifier,
  2. bool preferred = false,
  3. String? auxLine1,
  4. String? auxLine2,
  5. required String street,
  6. required String city,
  7. String? state,
  8. String? zipCode,
  9. required String country,
})

Default constructor

Implementation

VCardAddress({
  this.identifier,
  this.preferred = false,
  this.auxLine1,
  this.auxLine2,
  required this.street,
  required this.city,
  this.state,
  this.zipCode,
  required this.country,
});