prependChild method

void prependChild(
  1. Component child
)
inherited

Implementation

void prependChild(Component child) {
  child.parent = this;
}