around method

  1. @override
Future<Paginated<ChatItemId, Rx<ChatItem>>?> around({
  1. ChatItemId? item,
  2. ChatItemId? reply,
  3. ChatItemId? forward,
  4. ChatMessageText? withText,
})
override

Fetches the Paginated page around the item, if specified, or messages around the firstUnread otherwise.

If reply or forward is provided, then the item is considered as a quote of the specified reply of forward.

Implementation

@override
Future<Paginated<ChatItemId, Rx<ChatItem>>?> around({
  ChatItemId? item,
  ChatItemId? reply,
  ChatItemId? forward,
  ChatMessageText? withText,
}) async => null;