Capture and Handle Data Sequences with Streams in Dart

InstructorJermaine Oppong

Share this video with your friends

Send Tweet

Streams represent a sequence of asynchronous events. Each event is either a data event, also called an element of the stream, or an error event, which is a notification that something has failed. When a stream has emitted all its events, a single "done" event will notify the listener that the end has been reached. In this lesson, we will learn how we can capture and handle streaming data, working with various Stream classes.