specialCharacters constant

List<String> const specialCharacters

Special characters available on uk keyboard

Note: If some characters are not suitable, for instance because they are not available on the keyboard or not obvious they can be excluded. Please have a look at the example: example_exclude.dart

Implementation

// https://gitlab.com/kurdy/passwd-gen/-/issues/3
static const specialCharacters = [
  '!',
  '"',
  '£',
  '\$',
  '%',
  '^',
  '&',
  '*',
  '(',
  ')',
  '-',
  '_',
  '=',
  '+',
  '[',
  ']',
  '{',
  '}',
  ';',
  ':',
  '\'',
  '@',
  '#',
  '~',
  ',',
  '.',
  '<',
  '>',
  '/',
  '?',
  '€',
  '\\',
  '|'
];