VCard constructor

VCard(
  1. XmppElement? element
)

Implementation

VCard(XmppElement? element) {
  if (element != null) {
    element.children.forEach((child) => addChild(child));
  }
  name = 'vCard';
  addAttribute(XmppAttribute('xmlns', 'vcard-temp'));
  _parseImage();
}