passwordSafe property

List<TextInputFormatter> get passwordSafe

Allows characters typically used in passwords Includes letters, numbers, and common special characters

Implementation

static List<TextInputFormatter> get passwordSafe => <TextInputFormatter>[
  FilteringTextInputFormatter.deny(_specialCharsPattern),
];