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