OptionsValidationError constructor

const OptionsValidationError({
  1. Validation? validation,
  2. String? code,
  3. int? length,
  4. int? minLength,
  5. int? maxLength,
  6. List<Object?>? whereIn,
  7. List<Object?>? whereNotIn,
})

Implementation

const OptionsValidationError({
  Validation? validation,
  String? code,
  this.length,
  this.minLength,
  this.maxLength,
  this.whereIn,
  this.whereNotIn,
}) : super(validation, code);