removeAt method

T removeAt(
  1. int index
)

Implementation

T removeAt(int index) {
  final displayObject = _children[index];
  parent.removeChildAt(index);
  return displayObject;
}