build method
Implementation
Poll build() {
if (_question == null) {
throw Exception('Question is required');
}
return Poll(
question: _question!,
answers: _answers,
expireAt: _expireAt,
isAllowMultiple: _isAllowMultiple,
layout: _layout,
);
}