paramCase property

String get paramCase

Gets the text in param-case format.

Example: "hello world" becomes "hello-world"

Implementation

String get paramCase => _getSnakeCase(separator: '-');