toDotCase method
Converts to a lower case period separated string
example:
'hello World' -> 'hello.world'
Implementation
String toDotCase() => _fixCase(ChangeCaseType.dot);
Converts to a lower case period separated string
example:
'hello World' -> 'hello.world'
String toDotCase() => _fixCase(ChangeCaseType.dot);