toDotCase method

String toDotCase()

Converts to a lower case period separated string

example:

'hello World' -> 'hello.world'

Implementation

String toDotCase() => _fixCase(ChangeCaseType.dot);