getPollWidget method
Widget
getPollWidget(
- List<
PollOptions> options, - String chosenId,
- String pollId,
- CometChatTheme theme,
Implementation
Widget getPollWidget(List<PollOptions> options, String chosenId,
String pollId, CometChatTheme theme) {
return Column(
children: [
for (int index = 0; index < options.length; index++)
getRadio(index, options[index].id, options[index].optionText,
chosenId, pollId, theme),
],
);
}