clear method

  1. @alwaysThrows
  2. @override
void clear()
override

This operation is not supported by an unmodifiable list.

Implementation

@alwaysThrows
@override
void clear() {
  throw UnsupportedError("Cannot clear an unmodifiable list");
}