PollUpdatedOptions constructor

PollUpdatedOptions(
  1. {required PollUpdatedData data,
  2. required List<Poll> polls,
  3. Poll? poll,
  4. required String member,
  5. required String islevel,
  6. ShowAlert? showAlert,
  7. required void updatePolls(
    1. List<Poll>
    ),
  8. required void updatePoll(
    1. Poll
    ),
  9. required void updateIsPollModalVisible(
    1. bool
    )}
)

Implementation

PollUpdatedOptions({
  required this.data,
  required this.polls,
  this.poll,
  required this.member,
  required this.islevel,
  this.showAlert,
  required this.updatePolls,
  required this.updatePoll,
  required this.updateIsPollModalVisible,
});