Converts input to snake_case.
input
Example: "myFeature" -> "my_feature"
static String toSnakeCase(String input) { return ReCase(input).snakeCase; }