snake property

String get snake

Implementation

String get snake {
  return switch(_case) {
    StringParserInputCase.snake => _input,
    StringParserInputCase.camel => _camelToSnake(_input),
    StringParserInputCase.pascal => _pascalToSnake(_input)
  };
}