addAll method

Children addAll(
  1. List<Block> blocks
)

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

Implementation

Children addAll(List<Block> blocks) {
  this._blocks.addAll(blocks);
  return this;
}