listServices method
Future<List<DecryptedServiceDto> >
listServices(
- UserDto user,
- ListOfIdsDto listOfIdsDto,
- Crypto crypto
Implementation
Future<List<DecryptedServiceDto>> listServices(UserDto user, ListOfIdsDto listOfIdsDto, Crypto crypto) async {
return await crypto.decryptServices(user.dataOwnerId()!, null, (await this.rawGetServices(listOfIdsDto)) ?? []);
}