claimAccess function
Implementation
Future<AccessModel> claimAccess(String appId, String ownerID) async {
return await accessRepository(appId: appId)!.add(AccessModel(
documentID: ownerID,
appId: appId,
privilegeLevel: PrivilegeLevel.ownerPrivilege,
points: 0));
}