TaskList constructor

TaskList({
  1. String? etag,
  2. String? id,
  3. String? kind,
  4. String? selfLink,
  5. String? title,
  6. String? updated,
})

Implementation

TaskList({
  this.etag,
  this.id,
  this.kind,
  this.selfLink,
  this.title,
  this.updated,
});