Validator class

Constructors

Validator()

Properties

hashCode → int
The hash code for this object.
no setterinherited
runtimeType → Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() → String
A string representation of this object.
inherited

Operators

operator ==(Object other) → bool
The equality operator.
inherited

Static Methods

hasMinimumLength(String password, int minLength) → bool
Checks if the password has a minimum length.
hasMinimumLowercase(String password, int lowercaseCount) → bool
Checks if the password has a minimum number of lowercase characters.
hasMinimumNumericCharacters(String password, int numericCount) → bool
Checks if the password has a minimum number of numeric characters.
hasMinimumSpecialCharacters(String password, int specialCharactersCount) → bool
Checks if the password has a minimum number of special characters.
hasMinimumUppercase(String password, int uppercaseCount) → bool
Checks if the password has a minimum number of uppercase characters.