addChildren method

Toggle addChildren(
  1. List<Block> blocks
)

Add a list of blocks to the children and returns this instance.

Implementation

Toggle addChildren(List<Block> blocks) {
  this._children.addAll(blocks);
  return this;
}