toNoCase method
Converts the string without any casing (lower case, space separated)
example:
'Hello-World' -> 'hello world'
Implementation
String toNoCase() => _fixCase(ChangeCaseType.no);
Converts the string without any casing (lower case, space separated)
example:
'Hello-World' -> 'hello world'
String toNoCase() => _fixCase(ChangeCaseType.no);