SessionKey constructor
SessionKey({
- required Map<
String, dynamic> content, - required InboundGroupSession? inboundGroupSession,
- required String key,
- Map<
String, String> ? indexes, - Map<
String, Map< ? allowedAtIndex,String, int> > - required String roomId,
- required String sessionId,
- required String senderKey,
- required Map<
String, String> senderClaimedKeys,
Implementation
SessionKey(
{required this.content,
required this.inboundGroupSession,
required this.key,
Map<String, String>? indexes,
Map<String, Map<String, int>>? allowedAtIndex,
required this.roomId,
required this.sessionId,
required this.senderKey,
required this.senderClaimedKeys})
: indexes = indexes ?? <String, String>{},
allowedAtIndex = allowedAtIndex ?? <String, Map<String, int>>{};