partialUpdatePoll method
Partially updates a Poll by pollId
.
Use set
to define values to be set.
Use unset
to define values to be unset.
Implementation
Future<UpdatePollResponse> partialUpdatePoll(
String pollId, {
Map<String, Object?>? set,
List<String>? unset,
}) =>
_chatApi.polls.partialUpdatePoll(
pollId,
set: set,
unset: unset,
);