OutputStream class abstract

Implementers

Constructors

OutputStream({required ByteOrder byteOrder})

Properties

byteOrder ByteOrder
getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
isOpen bool
no setter
length int
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

clear() → void
close() Future<void>
closeSync() → void
flush() → void
Write any pending data writes to the output.
getBytes() Uint8List
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
open() → void
subset(int start, [int? end]) Uint8List
toString() String
A string representation of this object.
inherited
writeByte(int value) → void
Write a byte to the output stream.
writeBytes(List<int> bytes, {int? length}) → void
Write a set of bytes to the output stream.
writeStream(InputStream stream) → void
Write an InputStream to the output stream.
writeUint16(int value) → void
Write a 16-bit word to the output stream.
writeUint32(int value) → void
Write a 32-bit word to the end of the buffer.
writeUint64(int value) → void
Write a 64-bit word to the end of the buffer.

Operators

operator ==(Object other) bool
The equality operator.
inherited