MeetingEndedOptions constructor

MeetingEndedOptions(
  1. {ShowAlert? showAlert,
  2. String? redirectURL,
  3. required bool onWeb,
  4. required EventType eventType,
  5. void updateValidated(
    1. bool
    )?}
)

Implementation

MeetingEndedOptions({
  this.showAlert,
  this.redirectURL,
  required this.onWeb,
  required this.eventType,
  this.updateValidated,
});