Contact.fromVCard constructor
- String vCard
Parse contact from vCard content
Implementation
factory Contact.fromVCard(String vCard) {
Contact c;
VCardParser().parse(vCard, c);
return c;
}
Parse contact from vCard content
factory Contact.fromVCard(String vCard) {
Contact c;
VCardParser().parse(vCard, c);
return c;
}