CreatePollProps constructor

CreatePollProps({
  1. required String broadcasterId,
  2. required String title,
  3. required List<Choices> choices,
  4. required int duration,
  5. bool? channelPointsVotingEnabled,
  6. int? channelPointsPerVote,
})

Implementation

CreatePollProps({
  required this.broadcasterId,
  required this.title,
  required this.choices,
  required this.duration,
  this.channelPointsVotingEnabled,
  this.channelPointsPerVote,
});