camelCaseKeys method

Map<String, V> camelCaseKeys()

Returns a new map with all string keys converted to camelCase.

Implementation

Map<String, V> camelCaseKeys() =>
    {for (final e in entries) e.key.toString().toCamelCase(): e.value};