omit method

Map<K, V> omit(
  1. List<K> keys
)

Implementation

Map<K, V> omit(List<K> keys) {
  if (this == null) return {};
  return filter((k, _) => !keys.contains(k));
}