writeAll method Null safety

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

external void writeAll(Iterable<dynamic> objects, [String separator = ""]);