isStrongPassword static method

bool isStrongPassword(
  1. String password
)

Implementation

static bool isStrongPassword(String password) => hasMatch(password,
    r"^(?=.*\d)(?=.*[~!@#$%^&*()_\-+=|\\{}[\]:;<>?/])(?=.*[A-Z])(?=.*[a-z])\S{8,99}$");