notOnly method

List notOnly(
  1. List<String> keys
)

Removes elements from the list which is given

Example:

list.notOnly([key1, key2])

Implementation

List<dynamic> notOnly(List<String> keys) => FxList.notOnly(this, keys);