toNoCase method

String toNoCase()

Converts the string without any casing (lower case, space separated)

example:

'Hello-World' -> 'hello world'

Implementation

String toNoCase() => _fixCase(ChangeCaseType.no);