Returns a new map containing only the specified keys.
keys
{'a': 1, 'b': 2, 'c': 3}.pick(['a', 'c']) // {'a': 1, 'c': 3}
Map<K, V> pick(List<K> keys) => filterKeys(keys);