PollCreateParams constructor
PollCreateParams({})
Implementation
PollCreateParams({
required this.title,
required this.options,
this.data,
this.allowUserSuggestion,
this.allowMultipleVotes,
this.closeAt = -1, // Default value
}) : assert(options.isNotEmpty && options.length <= 20),
assert(title.length <= 2000);