Contact.fromVCard constructor

Contact.fromVCard(
  1. String vCard
)

Implementation

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