ForegroundTaskOptions constructor

const ForegroundTaskOptions({
  1. int interval = 5000,
  2. bool autoRunOnBoot = false,
  3. bool allowWifiLock = false,
})

Constructs an instance of ForegroundTaskOptions.

Implementation

const ForegroundTaskOptions({
  this.interval = 5000,
  this.autoRunOnBoot = false,
  this.allowWifiLock = false,
});