removeAt method

void removeAt(
  1. int index, [
  2. bool isRemoveGraphicalContent = false
])

Removes layer by its index from collections and may also remove graphical content if isRemoveGraphicalContent is true.

Implementation

void removeAt(int index, [bool isRemoveGraphicalContent = false]) {
  _helper.removeAt(index, isRemoveGraphicalContent);
}