validate method

List<ConstrainViolation> validate({
  1. String? parentFieldName,
  2. String? fieldSeparator,
  3. bool? throwExceptionOnFail,
})

Implementation

List<ConstrainViolation> validate({
  String? parentFieldName,
  String? fieldSeparator,
  bool? throwExceptionOnFail,
}) {
  return vs.validate(
    this,
    parentFieldName: parentFieldName,
    fieldSeparator: fieldSeparator,
    throwExceptionOnFail: throwExceptionOnFail,
  );
}