validate method

void validate(
  1. MeshSchema schema
)

Implementation

void validate(MeshSchema schema) {
  for (final p in _properties) {
    p.validate(schema);
  }
}