stellar_flutter_sdk
stellar_flutter_sdk
DataOutput
writeBoolean method
writeBoolean
stellar_flutter_sdk
stellar_flutter_sdk
DataOutput
writeBoolean method
DataOutput class
Constructors
DataOutput
Properties
bytes
data
fileLength
hashCode
offset
runtimeType
Methods
noSuchMethod
pad
toString
write
writeBoolean
writeByte
writeChar
writeChars
writeDouble
writeFloat
writeInt
writeLong
writeShort
writeUTF
Operators
operator ==
writeBoolean
method
void
writeBoolean
(
bool
v
,
[
Endian
endian
=
Endian.big
]
)
Implementation
void writeBoolean(bool v, [Endian endian = Endian.big]) { writeByte(v ? 1 : 0, endian); }