Tasks constructor

Tasks({
  1. Links? links,
  2. List<Task>? tasks = const [],
})

Returns a new Tasks instance.

Implementation

Tasks({
  this.links,
  this.tasks = const [],
});