validate method

  1. @override
void validate(
  1. MeshSchema schema
)
override

Implementation

@override
void validate(MeshSchema schema) {
  for (final item in _childTagNames) {
    // make sure there is an element that matches
    schema.element(item);
  }
}