validate abstract method

ValidationResult validate(
  1. T model
)

Validate the custom model instance.

Performs validation on the custom model and returns a validation result indicating whether the model is valid and any error messages.

model the custom model instance to validate Returns a ValidationResult with validation status and messages

Implementation

ValidationResult validate(T model);