isCtrlZ property
bool
get
isCtrlZ
Whether this is Ctrl+Z.
Implementation
bool get isCtrlZ =>
ctrl && type == KeyType.runes && runes.isNotEmpty && runes.first == 0x7A;
Whether this is Ctrl+Z.
bool get isCtrlZ =>
ctrl && type == KeyType.runes && runes.isNotEmpty && runes.first == 0x7A;