Dart API Referencedart:ioListOutputStream

ListOutputStream Interface

ListOutputStream makes it possible to use the OutputStream interface to write data to a List of integers.

Extends

OutputStream

Constructors

Code new ListOutputStream() #

Create a ListOutputStream.

ListOutputStream();

Methods

Code List<int> contents() #

Get the contents written to the ListOutputStream.

List<int> contents();