IntentOption constructor

IntentOption({
  1. String? intentName,
  2. String? componentPkg,
  3. String? componentClass,
  4. String? action,
  5. String? category,
  6. Map<String, String>? extra,
  7. bool goSetting = false,
  8. bool isLaunch = false,
})

Implementation

IntentOption({
  this.intentName,
  this.componentPkg,
  this.componentClass,
  this.action,
  this.category,
  this.extra,
  this.goSetting = false,
  this.isLaunch = false
});