toLowerDotCase method

String toLowerDotCase()

Converts the string to lower.dot.case (alias for toDotCase). Example: 'HelloWorld' -> 'hello.world'

Implementation

String toLowerDotCase() => toDotCase();