Contact.fromVCard constructor
Contact.fromVCard(
- String vCard
Implementation
factory Contact.fromVCard(String vCard) {
var c = Contact();
VCardParser().parse(vCard, c);
return c;
}
factory Contact.fromVCard(String vCard) {
var c = Contact();
VCardParser().parse(vCard, c);
return c;
}