VCard1 constructor

VCard1({
  1. VCardVersion version = VCardVersion.v1,
  2. required VCardName name,
  3. List<VCardTelephone>? telephone,
  4. List<VCardAddress>? address,
  5. VCardGeo? geo,
  6. List<String>? emails,
  7. VCardOrganization? organization,
  8. String? title,
  9. String? role,
  10. String? url,
  11. DateTime? revision,
})

Default constructor

Implementation

VCard1({
  super.version = VCardVersion.v1,
  required super.name,
  this.telephone,
  this.address,
  this.geo,
  this.emails,
  this.organization,
  this.title,
  this.role,
  this.url,
  this.revision,
});