ZoomOptions constructor

ZoomOptions({
  1. required String jwtToken,
  2. String domain = 'zoom.us',
  3. bool enableLog = true,
})

Creates the options used by FlutterZoomSdkAdvanced.initZoom.

Implementation

ZoomOptions({
  required this.jwtToken,
  this.domain = 'zoom.us',
  this.enableLog = true,
});