addChildren method

BulletedListItem addChildren(
  1. List<Block> blocks
)

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

Implementation

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