ignore static method

XmlConditional ignore(
  1. List<XmlNode> children
)

Returns an XmlConditional with the condition set to IGNORE.

Implementation

static XmlConditional ignore(List<XmlNode> children) {
  return XmlConditional(
    condition: 'IGNORE',
    children: children,
  );
}