clearWithout static method

void clearWithout(
  1. List<String> keys
)

Implementation

static void clearWithout(List<String> keys) {
  keys.addAll(_lockedKeys);
  _quicks.removeWhere((key, value) => !keys.contains(key));
}