snake static method

String snake(
  1. String input
)

my_cool_page -> my_cool_page (the canonical file/folder form).

Implementation

static String snake(String input) => _words(input).join('_');