getCompletedTasksStream method
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
@override
Stream<String> getCompletedTasksStream() {
return eventChannel.receiveBroadcastStream().cast<String>();
}