policyPresentationRepository method
Implementation
@override
PolicyPresentationRepository? policyPresentationRepository(String? appId) {
if ((appId != null) && (_policyPresentationRepository[appId] == null)) {
_policyPresentationRepository[appId] = PolicyPresentationCache(
PolicyPresentationFirestore(
() => appRepository()!
.getSubCollection(appId, 'policypresentation'),
appId));
}
return _policyPresentationRepository[appId];
}