removeAt method

  1. @override
E removeAt(
  1. int index
)
override

This operation is not supported by an unmodifiable list.

Implementation

@override
E removeAt(int index) {
  throw UnsupportedError('Cannot remove from an unmodifiable list');
}