getPollChangeLogsSinceTimestamp method

Future<PollChangeLogsResponse> getPollChangeLogsSinceTimestamp(
  1. int ts,
  2. 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),
  );
}