PollOptionRetrievalParams constructor Null safety

PollOptionRetrievalParams(
  1. {required String channelUrl,
  2. required int pollOptionId,
  3. required int pollId,
  4. required ChannelType channelType}
)

Implementation

PollOptionRetrievalParams({
  required this.channelUrl,
  required this.pollOptionId,
  required this.pollId,
  required this.channelType,
});