add method - Sink class - dart:core library (original) (raw)
add abstract method
void add(
- T data )
Adds data
to the sink.
Must not be called after a call to close.
Implementation
void add(T data);
void add(
Adds data
to the sink.
Must not be called after a call to close.
void add(T data);