delete method

Future<bool> delete(
  1. String id
)

Deletes a task by id.

Implementation

Future<bool> delete(String id) => _repo.deleteById(id);