PollChoice constructor
const
PollChoice({})
Implementation
const factory PollChoice({
required int id,
@JsonKey(name: 'choice_text') required String choiceText,
@JsonKey(name: 'sort_order') int? sortOrder,
@JsonKey(name: 'num_votes') @Default(0) int numVotes,
}) = _PollChoice;