TodoTaskList constructor

TodoTaskList({
  1. String? id,
  2. String? displayName,
  3. bool? isOwner,
  4. bool? isShared,
  5. String? wellknownListName,
})

Creates a new TodoTaskList instance.

Implementation

TodoTaskList({
  this.id,
  this.displayName,
  this.isOwner,
  this.isShared,
  this.wellknownListName,
});