getContact method

Implementation

Future<DecryptedContactDto?> getContact(UserDto user, String contactId, CryptoConfig<DecryptedContactDto, ContactDto> config) async {
  return await (await this.rawGetContact(contactId))?.let((it) => config.decryptContact(user.dataOwnerId()!, it));
}