add method

Children add(
  1. Block block
)

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

Implementation

Children add(Block block) {
  this._blocks.add(block);
  return this;
}