get static method

AnyDebouncer get(
  1. String key
)

Implementation

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