IsExactLengthRule constructor

IsExactLengthRule({
  1. required String validationError,
  2. required int exact,
  3. bool countWhiteSpaces = true,
})

Implementation

IsExactLengthRule({required String validationError,required this.exact, this.countWhiteSpaces = true,}) : super(validationError: validationError);