Returns a new map with all string keys converted to camelCase.
Map<String, V> camelCaseKeys() => {for (final e in entries) e.key.toString().toCamelCase(): e.value};