deletePoll method
Deletes this poll.
Implementation
Future<void> deletePoll({
required int pollId,
}) async {
sbLog.i(StackTrace.current, 'pollId: $pollId');
checkUnsupportedAction();
return await chat.apiClient.send(PollDeleteRequest(chat, pollId: pollId));
}