kebabCaseKeys method

Map<String, V> kebabCaseKeys()

Returns a new map with all string keys converted to kebab-case.

Implementation

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