IOSOptions constructor

IOSOptions({
  1. required String appId,
  2. bool logEnabled = false,
  3. bool locationEnabled = true,
  4. bool urlSchemesCheckEnabled = false,
})

Implementation

IOSOptions({
  required this.appId,
  this.logEnabled = false,
  this.locationEnabled = true,
  this.urlSchemesCheckEnabled = false,
});