listServices method

Future<List<DecryptedServiceDto>> listServices(
  1. UserDto user,
  2. ListOfIdsDto listOfIdsDto,
  3. 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)) ?? []);
}