Returns a new map with the specified keys removed.
keys
{'a': 1, 'b': 2, 'c': 3}.omit(['b']) // {'a': 1, 'c': 3}
Map<K, V> omit(List<K> keys) => rejectKeys(keys);