write method - StringSink class - dart:core library (original) (raw)
write abstract method
void write(
- Object? object )
Writes the string representation of object
.
Converts object
to a string using object.toString()
.
Notice that calling sink.write(null)
will will write the "null"
string.
Implementation
void write(Object? object);