chunks method

Iterable<String> chunks()

Implementation

Iterable<String> chunks() sync* {
  if (_root == null) return;
  yield* _root!.chunks();
}