requestSessionKey method

Future<void> requestSessionKey(
  1. String sessionId,
  2. String senderKey
)

Implementation

Future<void> requestSessionKey(String sessionId, String senderKey) async {
  if (!client.encryptionEnabled) {
    return;
  }
  await client.encryption?.keyManager.request(this, sessionId, senderKey);
}