ownAnswers property

List<PollVoteData> get ownAnswers

List of answers provided by the current user.

Note: This does not include the votes casted by the user, see ownVotes for that.

Implementation

List<PollVoteData> get ownAnswers {
  return ownVotesAndAnswers.where((it) => it.isAnswer).toList();
}