getMyFeedChannelChangeLogs static method

Future<FeedChannelChangeLogs> getMyFeedChannelChangeLogs(
  1. FeedChannelChangeLogsParams params,
  2. {String? token,
  3. int? timestamp}
)

Requests the channel changelogs from given token. @since 4.0.1

Implementation

static Future<FeedChannelChangeLogs> getMyFeedChannelChangeLogs(
  FeedChannelChangeLogsParams params, {
  String? token,
  int? timestamp,
}) async {
  sbLog.i(StackTrace.current, 'token: $token');
  return _instance._chat
      .getMyFeedChannelChangeLogs(params, token: token, timestamp: timestamp);
}