FastJob constructor

const FastJob({
  1. Duration timeLimit = const Duration(seconds: 15),
  2. bool requestUserInteraction = false,
  3. String? debugLabel,
})

Implementation

const FastJob({
  this.timeLimit = const Duration(seconds: 15),
  this.requestUserInteraction = false,
  this.debugLabel,
});