urls property

List<VCardURL> get urls

A list of all children of type "URL".

Implementation

List<document_wrapper.VCardURL> get urls => document
    .childrenByDocumentType("URL")
    .map((child) => document_wrapper.VCardURL(child))
    .toList();