writeAll method

  1. @override
void writeAll(
  1. Iterable objects, [
  2. String separator = ''
])
override

Writes all objects separated by separator.

Writes each individual object in objects in iteration order, and writes separator between any two objects.

Implementation

@override
void writeAll(Iterable<dynamic> objects, [String separator = '']) {
  _buffer = null;
  super.writeAll(objects, separator);
}