fetchMessageActions method
Returns all message actions of this channel.
Pagination can be controlled using from
, to
and limit
parameters.
If from
is not provided, the server uses the current time.
If both to
or limit
are null, it will fetch the maximum amount of message actions -
the server will try and retrieve all actions for the channel, going back in time forever.
Implementation
Future<FetchMessageActionsResult> fetchMessageActions(
{Timetoken? from, Timetoken? to, int? limit}) =>
_core.fetchMessageActions(name,
from: from, to: to, limit: limit, keyset: _keyset);