get<O> static method

ConditionParseCache<O> get<O>()

Implementation

static ConditionParseCache<O> get<O>() {
  var cached = _typesCache[O];
  if (cached != null) {
    return cached as ConditionParseCache<O>;
  }

  var instance = ConditionParseCache<O>._();
  _typesCache[O] = instance;
  return instance;
}