minus method

List<T> minus(
  1. Iterable<T> elements
)

Implementation

List<T> minus(Iterable<T> elements) {
  return this..removeRange(0, 0);
}