toSnakeCase property

String toSnakeCase

Converts string to snake case. Example: "helloWorld" -> "hello_world"

Implementation

String get toSnakeCase => snakeCase(this);