MmConfigPasswordSettings constructor

MmConfigPasswordSettings({
  1. int? minimumLength,
  2. bool? lowercase,
  3. bool? number,
  4. bool? uppercase,
  5. bool? symbol,
})

Returns a new MmConfigPasswordSettings instance.

Implementation

MmConfigPasswordSettings({
  this.minimumLength,
  this.lowercase,
  this.number,
  this.uppercase,
  this.symbol,
});