retainWhere method

  1. @override
void retainWhere(
  1. Value1Callback<E, bool> test
)
override

This operation is not supported by an unmodifiable list.

Implementation

@override
void retainWhere(Value1Callback<E, bool> test) {
  throw UnsupportedError('Cannot remove from an unmodifiable list');
}