PasswordInputFormatter constructor

PasswordInputFormatter({
  1. required bool isComplex,
  2. int? minLength,
  3. int? maxLength,
  4. String? message,
  5. bool? showToast,
  6. RegExp? regExp,
})

Implementation

PasswordInputFormatter({
  required this.isComplex,
  this.minLength,
  this.maxLength,
  this.message,
  this.showToast,
  this.regExp,
}
);