elements property

List<GS1Element> get elements

A list of all children of type "Element".

Implementation

List<document_wrapper.GS1Element> get elements => document
    .childrenByDocumentType("Element")
    .map((child) => document_wrapper.GS1Element(child))
    .toList();