HandleVotePollOptions constructor

HandleVotePollOptions(
  1. {required String pollId,
  2. required int optionIndex,
  3. Socket? socket,
  4. ShowAlert? showAlert,
  5. required String member,
  6. required String roomName,
  7. required void updateIsPollModalVisible(
    1. bool
    )}
)

Implementation

HandleVotePollOptions({
  required this.pollId,
  required this.optionIndex,
  this.socket,
  this.showAlert,
  required this.member,
  required this.roomName,
  required this.updateIsPollModalVisible,
});