We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d662a6 commit 724ff6fCopy full SHA for 724ff6f
packages/dogs_generator/lib/settings.dart
@@ -51,6 +51,7 @@ class DogsGeneratorSettings {
51
enum CasingType {
52
keep,
53
snake,
54
+ kebab,
55
camel,
56
pascal,
57
constant;
@@ -61,6 +62,8 @@ enum CasingType {
61
62
return CasingType.keep;
63
case "snake":
64
return CasingType.snake;
65
+ case "kebab":
66
+ return CasingType.kebab;
67
case "camel":
68
return CasingType.camel;
69
case "pascal":
@@ -84,6 +87,8 @@ enum CasingType {
84
87
return ReCase(input).pascalCase;
85
88
case CasingType.constant:
86
89
return ReCase(input).constantCase;
90
+ case CasingType.kebab:
91
+ return ReCase(input).paramCase;
92
}
93
94
0 commit comments