isStrongPassword method
Checks if the string is a strong password.
Implementation
bool isStrongPassword({
int minLength = 8,
int minLowercase = 1,
int minUppercase = 1,
int minNumbers = 1,
int minSymbols = 1,
}) {
return _isStrongPassword(
this,
minLength,
minLowercase,
minUppercase,
minNumbers,
minSymbols,
);
}