backKeywords constant

Set<String> const backKeywords

Magic keywords that move the wizard backwards when typed into a text input. The < prefix is intentional: it's the single-keystroke shortcut some users prefer over typing the full word.

Implementation

static const Set<String> backKeywords = <String>{
  'back',
  'b',
  '<',
  ':back',
};