isCtrlD property

bool get isCtrlD

Whether this is Ctrl+D.

Implementation

bool get isCtrlD =>
    ctrl && type == KeyType.runes && runes.isNotEmpty && runes.first == 0x64;