camel property
String
get
camel
Implementation
String get camel {
return switch(_case) {
StringParserInputCase.snake => _snakeToCamel(_input),
StringParserInputCase.camel => _input,
StringParserInputCase.pascal => _pascalToCamel(_input)
};
}