retainWhere method

*<Null safety>*
  • @override

void retainWhere (bool test(E element)) override

Implementation

@override
void retainWhere(bool Function(E element) test) {
  throw UnsupportedError('Cannot remove from a fixed-length list');
}