validate method

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

Implementation

@override
void validate(MeshSchema schema) {
  // In Python it checked if type in SimpleValue members.
  // Here we already have an enum, so no real validation needed.
  // But we can ensure that _type is always a valid SimpleValue.
  // Just trust the enum for now.
}