menu
bitstream package
documentation
bitstream
BitStream
writeBool method
writeBool
brightness_4
writeBool
method
Null safety
void
writeBool
(
bool
input
)
Writes a bool to the stream
Implementation
void writeBool(bool input) { write((input ? 1 : 0), bits: 1); }
bitstream package
documentation
bitstream
BitStream
writeBool method
BitStream class
Constructors
BitStream
Properties
hashCode
runtimeType
Methods
checkBit
getCursor
getLength
getStream
noSuchMethod
output
read
readAsciiString
readBitStream
readBool
readBytes
readHexString
resetCursor
toString
write
writeAsciiString
writeBitStream
writeBool
writeBytes
writeHexString
Operators
operator ==