performSelector method
Performs the specified MacOS-specific selector from the
NSStandardKeyBindingResponding protocol or user-specified selector
from DefaultKeyBinding.Dict.
Implementation
@override
void performSelector(String selectorName) {
if (selectorName == 'deleteBackward:') {
onBackspace();
_resetEditing(notify: false);
}
}