score property

int get score

0–5 score, useful for a strength indicator bar.

Implementation

int get score =>
    [
      hasMinLength,
      hasUppercase,
      hasLowercase,
      hasDigit,
      hasSpecial,
    ].where((v) => v).length;