PubCache constructor
PubCache()
Implementation
factory PubCache() {
if (Scope.hasScopeKey(scopeKey)) {
return Scope.use(scopeKey);
} else {
return _self ??= PubCache._internal();
}
}
factory PubCache() {
if (Scope.hasScopeKey(scopeKey)) {
return Scope.use(scopeKey);
} else {
return _self ??= PubCache._internal();
}
}