regex property

String regex
getter/setter pair

simple regex for password, that checks the password has 6-32 chars or not

Implementation

static String regex = r"^.{6,32}$";