Password.pure constructor
const
Password.pure({})
Implementation
const Password.pure({
this.minLength = 5,
this.requireUppercase = true,
this.requireLowercase = false,
this.requireNumber = false,
this.requireSpecialChar = true,
}) : super.pure('');