writeAll method
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);
}