MmEnvironmentConfigPasswordSettings constructor

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

Returns a new MmEnvironmentConfigPasswordSettings instance.

Implementation

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