BackgroundTask constructor

BackgroundTask({
  1. String? name,
  2. List<Measure>? measures,
  3. Duration? duration,
})

Create a new task which can run in the background.

Implementation

BackgroundTask({
  super.name,
  super.measures,
  this.duration,
});