Stdout represents the IOSink for either stdout
or stderr
.
It provides a blocking IOSink
, so using this to write will block until
the output is written.
In some situations this blocking behavior is undesirable as it does not
provide the same non-blocking behavior as dart:io in general exposes.
Use the property nonBlocking to get an IOSink
which has the non-blocking
behavior.
This class can also be used to check whether stdout
or stderr
is
connected to a terminal and query some terminal properties.
- Implements
Properties
- done → Future
-
read-only, inherited
- encoding → Encoding
-
read / write, inherited
- hashCode → int
-
Get a hash code for this object.
read-only, inherited - hasTerminal → bool
-
Returns true if there is a terminal attached to stdout.
read-only - nonBlocking → IOSink
-
Get a non-blocking
IOSink
.read-only - runtimeType → Type
-
A representation of the runtime type of the object.
read-only, inherited - terminalColumns → int
-
Get the number of columns of the terminal.
read-only - terminalLines → int
-
Get the number of lines of the terminal.
read-only
Operators
-
operator ==(
other) → bool -
The equality operator.
inherited
Methods
-
add(
List<int> data) → void -
Adds byte
data
to the target consumer, ignoringencoding
.inherited -
addError(
error, [ StackTrace stackTrace ]) → void -
Passes the error to the target consumer as an error event.
inherited -
addStream(
Stream<List<int>> stream) → Future -
Adds all elements of the given
stream
tothis
.inherited -
close(
) → Future -
Close the target consumer.
inherited -
flush(
) → Future -
Returns a
Future
that completes once all buffered data is accepted by the to underlyingStreamConsumer
.inherited -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed.
inherited -
toString(
) → String -
Returns a string representation of this object.
inherited -
write(
object) → void -
Converts
obj
to a String by invokingObject.toString
andadd
s the encoding of the result to the target consumer.inherited -
writeAll(
objects, [ sep = "" ]) → void -
Iterates over the given
objects
andwrite
s them in sequence.inherited -
writeCharCode(
int charCode) → void -
Writes the character of
charCode
.inherited -
writeln(
[object = "" ]) → void -
Converts
obj
to a String by invokingObject.toString
and writes the result tothis
, followed by a newline.inherited