BlocxLengthRangeValidator constructor

BlocxLengthRangeValidator({
  1. required int minLength,
  2. required int maxLength,
  3. Duration? duration,
})

Implementation

BlocxLengthRangeValidator({required this.minLength, required this.maxLength, super.duration})
  : assert(maxLength >= minLength, 'maxLength must be >= minLength');