storeOutboundGroupSession method

  1. @override
Future<void> storeOutboundGroupSession(
  1. String roomId,
  2. String pickle,
  3. String deviceIds,
  4. int creationTime,
)
override

Implementation

@override
Future<void> storeOutboundGroupSession(
    String roomId, String pickle, String deviceIds, int creationTime) async {
  await _outboundGroupSessionsBox.put(roomId.toHiveKey, <String, dynamic>{
    'room_id': roomId,
    'pickle': pickle,
    'device_ids': deviceIds,
    'creation_time': creationTime,
  });
  return;
}