getPollChangeLogsSinceTimestamp method
Future<PollChangeLogsResponse>
getPollChangeLogsSinceTimestamp(
- int ts,
- PollChangeLogsParams params
Retrieves Poll Changelogs through timestamp
Implementation
Future<PollChangeLogsResponse> getPollChangeLogsSinceTimestamp(
int ts, PollChangeLogsParams params) async {
final sdk = SendbirdSdk().getInternal();
return sdk.api.send<PollChangeLogsResponse>(
PollChangelogsGetRequest(params: params, ts: ts),
);
}