getCompletedTasksStream method

Stream<String> getCompletedTasksStream()

Gets a stream with IDs of completed tasks

Returns Stream of String with IDs of tasks that have been successfully completed (HTTP status 200-299)

Implementation

Stream<String> getCompletedTasksStream() {
  throw UnimplementedError(
      'getCompletedTasksStream() has not been implemented.');
}