OptionsValidation<T> constructor

const OptionsValidation<T>({
  1. String? errorCode,
  2. int? minLength,
  3. int? maxLength,
  4. List<T>? whereIn,
  5. List<T>? whereNotIn,
})

Implementation

const OptionsValidation({
  String? errorCode,
  this.minLength,
  this.maxLength,
  this.whereIn,
  this.whereNotIn,
}) : super(errorCode);