VoteResult constructor

const VoteResult({
  1. required bool voted,
  2. required int voteCount,
})

Creates a VoteResult record.

Implementation

const VoteResult({
  required this.voted,
  required this.voteCount,
});