Job<Q, R> constructor

Job<Q, R>(
  1. String name,
  2. ComputeCallback<Q, R> computeFunction,
  3. Q value, {
  4. CancellationCallback? cancelled,
  5. required String? deduplicationKey,
})

Implementation

Job(this.name, this.computeFunction, this.value,
    {this.cancelled, required this.deduplicationKey});