Task constructor

Task({
  1. AppEngineHttpRequest? appEngineHttpRequest,
  2. String? createTime,
  3. int? dispatchCount,
  4. String? dispatchDeadline,
  5. Attempt? firstAttempt,
  6. HttpRequest? httpRequest,
  7. Attempt? lastAttempt,
  8. String? name,
  9. int? responseCount,
  10. String? scheduleTime,
  11. String? view,
})

Implementation

Task({
  this.appEngineHttpRequest,
  this.createTime,
  this.dispatchCount,
  this.dispatchDeadline,
  this.firstAttempt,
  this.httpRequest,
  this.lastAttempt,
  this.name,
  this.responseCount,
  this.scheduleTime,
  this.view,
});