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