getMyFeedChannelChangeLogs static method
Future<FeedChannelChangeLogs>
getMyFeedChannelChangeLogs(
- FeedChannelChangeLogsParams params, {
- String? token,
- int? timestamp,
Requests the channel changelogs from given token. @since 4.0.3
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);
}