postRepository method
Implementation
@override
PostRepository? postRepository(String? appId) {
if ((appId != null) && (_postRepository[appId] == null)) {
_postRepository[appId] = PostCache(PostFirestore(
() => appRepository()!.getSubCollection(appId, 'post'), appId));
}
return _postRepository[appId];
}