getAllInboundGroupSessions method

  1. @override
Future<List<StoredInboundGroupSession>> getAllInboundGroupSessions()
override

Implementation

@override
Future<List<StoredInboundGroupSession>> getAllInboundGroupSessions() async {
  final rawSessions = await _inboundGroupSessionsBox.getAllValues();
  return rawSessions.values
      .map((raw) => StoredInboundGroupSession.fromJson(copyMap(raw)))
      .toList();
}