removeRange method

  1. @override
void removeRange(
  1. int start,
  2. int end
)
override

Removes the objects in the range start inclusive to end exclusive.

Implementation

@override
void removeRange(int start, int end) => _wrappedList.removeRange(start, end);