KeyCode.char constructor
Constructs a character key
Implementation
const KeyCode.char(String char, {int baseLayoutKey = 0, bool shiftProduced = false})
: this._(
kind: KeyCodeKind.char,
char: char,
baseLayoutKey: baseLayoutKey,
shiftProduced: shiftProduced,
);