bottom2Top method

void bottom2Top()

Implementation

void bottom2Top() {
  Rect bound = getBoundBox();
  this.each((node, index, startNode) {
    node.y = node.y - (node.y - bound.top) * 2 - node.size.height;
    return false;
  });
}