emails property
List<VCardEmail>
get
emails
A list of all children of type "Email".
Implementation
List<document_wrapper.VCardEmail> get emails => document
.childrenByDocumentType("Email")
.map((child) => document_wrapper.VCardEmail(child))
.toList();