forKeys static method

String forKeys(
  1. List<LogicalKeyboardKey> keys
)

Implementation

static String forKeys(List<LogicalKeyboardKey> keys) {
  return keys.map((k) => normalisedKeyName(k)).join('+');
}