paramCase property
String?
get
paramCase
Convert the String to param case
Example:
String paramCase = "Hello World".paramCase;
// Result: "hello-world"
Implementation
String? get paramCase => GetUtils.paramCase(this);