get static method

AnyThrottle get(
  1. String key
)

Implementation

static AnyThrottle get(String key) {
  maps ??= {};
  return (maps![key] ??= AnyThrottle());
}