ZoomOptions constructor

ZoomOptions({
  1. required String? domain,
  2. required String? clientId,
  3. required String? clientSecert,
  4. String? jwtSignature,
  5. String? language = "en-US",
  6. bool? showMeetingHeader = true,
  7. bool? disableInvite = false,
  8. bool? disableCallOut = false,
  9. bool? disableRecord = false,
  10. bool? disableJoinAudio = false,
  11. bool? audioPanelAlwaysOpen = false,
  12. String? backupUrl = '',
})

Implementation

ZoomOptions(
    {required this.domain,
    required this.clientId,
    required this.clientSecert,
    this.jwtSignature,
    this.language = "en-US",
    this.showMeetingHeader = true,
    this.disableInvite = false,
    this.disableCallOut = false,
    this.disableRecord = false,
    this.disableJoinAudio = false,
    this.audioPanelAlwaysOpen = false,
    this.backupUrl = ''});