getPollWidget method

Widget getPollWidget(
  1. List<PollOptions> options,
  2. String chosenId,
  3. String pollId,
  4. 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),
    ],
  );
}