getOutboundGroupSession method
Implementation
@override
Future<OutboundGroupSession?> getOutboundGroupSession(
String roomId,
String userId,
) async {
final raw = await _outboundGroupSessionsBox.get(roomId);
if (raw == null) return null;
return OutboundGroupSession.fromJson(copyMap(raw), userId);
}