get static method

QueueUtil? get(
  1. String key
)

Implementation

static QueueUtil? get(String key) {
  if (_instance[key] == null) {
    _instance[key] = QueueUtil._();
  }
  return _instance[key];
}