deleteRequest method

Future<bool?> deleteRequest(
  1. String requestId
)

Deletes a task and all related files by ID

requestId - task ID to delete

Returns true if the task was deleted, false if it could not be deleted, null if the task does not exist

Implementation

Future<bool?> deleteRequest(String requestId) {
  throw UnimplementedError('deleteRequest() has not been implemented.');
}