lock static method

void lock(
  1. dynamic key
)

Implementation

static void lock(dynamic key) {
  key = key.toString();
  _lockedKeys.add(key);
}