VCard1 constructor
VCard1({
- VCardVersion version = VCardVersion.v1,
- required VCardName name,
- List<
VCardTelephone> ? telephone, - List<
VCardAddress> ? address, - VCardGeo? geo,
- List<
String> ? emails, - VCardOrganization? organization,
- String? title,
- String? role,
- String? url,
- 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,
});