humps 1.0.3 humps: ^1.0.3 copied to clipboard
A Dart package for converting map keys between camelCase and snake_case. Useful for converting between JSON and Dart field names.
1.0.3 #
- Fix issues with nested list content
1.0.2 #
- adding the
decamelize
method onString
class to convert a camelCase string to snake_case or kebab-case - adding the
decamelizeKeys
method onMap
class to convert the keys of a map from camelCase to snake_case or kebab-case - adding the
camelize
method onString
class to convert a snake_case or kebab-case string to camelCase - adding the
camelizeKeys
method onMap
class to convert the keys of a map from snake_case or kebab-case to camelCase - adding the
pascalize
method onString
class to convert a snake_case or kebab-case string to PascalCase - adding the
pascalizeKeys
method onMap
class to convert the keys of a map from snake_case or kebab-case to PascalCase - adding the
depascalize
method onString
class to convert a PascalCase string to snake_case or kebab-case - adding the
depascalizeKeys
method onMap
class to convert the keys of a map from PascalCase to snake_case or kebab-case
1.0.1 #
- Updating the docs
1.0.0 #
- Initial version.