areSupportedModifierKeys function
Implementation
bool areSupportedModifierKeys(List<LogicalKeyboardKey> keys) {
for (final key in keys) {
if (!isSupportedModifierKey(key)) {
return false;
}
}
return true;
}
bool areSupportedModifierKeys(List<LogicalKeyboardKey> keys) {
for (final key in keys) {
if (!isSupportedModifierKey(key)) {
return false;
}
}
return true;
}