Gets multiple values at once.
Map<String, dynamic> only(List<String> keys) { return { for (final key in keys) if (has(key)) key: get(key), }; }