clearVote method

Future<void> clearVote({
  1. bool waitForResponse = true,
})

Clear the authenticated user's vote on the object.

Note: votes must be cast on behalf of a human user (i.e., no automatic voting by bots). See Reddit rules for more details on what is considered vote cheating or manipulation.

Implementation

Future<void> clearVote({bool waitForResponse = true}) async =>
    _vote(VoteState.none, waitForResponse);