PollVoteModel constructor

PollVoteModel({
  1. int? id,
  2. PollOptionModel? pollOption,
  3. UserModel? user,
})

Implementation

PollVoteModel({
  this.id,
  this.pollOption,
  this.user,
});