add method - Sink class - dart:core library (original) (raw)

description

add abstract method

void add(

  1. T data )

Adds data to the sink.

Must not be called after a call to close.

Implementation

void add(T data);