get static method

QueueUtils? get(
  1. String key
)

Implementation

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