sounds property

List<VCardSound> get sounds

A list of all children of type "Sound".

Implementation

List<document_wrapper.VCardSound> get sounds => document
    .childrenByDocumentType("Sound")
    .map((child) => document_wrapper.VCardSound(child))
    .toList();