passwordValid method

bool passwordValid(
  1. String email
)

Implementation

bool passwordValid(String email) {
  return RegExp(emailPattern).hasMatch(email);
}