add method

void add(
  1. String str
)
override

Adds chunked data to this sink.

This method is also used when converters are used as StreamTransformers.

Implementation

void add(String str) {
  addSlice(str, 0, str.length, false);
}

© 2012 the Dart project authors
Licensed under the BSD 3-Clause "New" or "Revised" License.
https://api.dart.dev/stable/2.18.5/dart-convert/StringConversionSinkMixin/add.html