otherCharacters top-level constant

List<String> const otherCharacters

All Characters not digits, letters or punctuation

Implementation

const List<String> otherCharacters = [
  '/', // Slash
  '\\', // Back Slash
  '+', // Plus (the minus is a dash punctuation)
  '=', // Back Slash
  '#', // Hash
  '\$', // Dollar
  '&', //
  '*', //
  '@', //
];