listServicesByAssociationId method
Implementation
Future<List<DecryptedServiceDto>> listServicesByAssociationId(UserDto user, String associationId, Crypto crypto) async {
return await crypto.decryptServices(user.dataOwnerId()!, null, (await this.rawListServicesByAssociationId(associationId)) ?? []);
}