ratchetKey method
Implementation
Future<void> ratchetKey({String? participantId, int? keyIndex}) async {
if (participantId != null) {
await _keyProvider.ratchetKey(participantId, keyIndex);
} else {
await _keyProvider.ratchetSharedKey(keyIndex: keyIndex);
}
}