storeInboundGroupSession method
Future<void>
storeInboundGroupSession(
- String roomId,
- String sessionId,
- String pickle,
- String content,
- String indexes,
- String allowedAtIndex,
- String senderKey,
- String senderClaimedKey,
override
Implementation
@override
Future<void> storeInboundGroupSession(
String roomId,
String sessionId,
String pickle,
String content,
String indexes,
String allowedAtIndex,
String senderKey,
String senderClaimedKey) async {
await _inboundGroupSessionsBox.put(
sessionId.toHiveKey,
StoredInboundGroupSession(
roomId: roomId,
sessionId: sessionId,
pickle: pickle,
content: content,
indexes: indexes,
allowedAtIndex: allowedAtIndex,
senderKey: senderKey,
senderClaimedKeys: senderClaimedKey,
uploaded: false,
).toJson());
return;
}