toUpperDotCase method

String toUpperDotCase()

Converts the string to UPPER.DOT.CASE. Example: 'HelloWorld' -> 'HELLO.WORLD'

Implementation

String toUpperDotCase() => toDotCase().toUpperCase();