toUpperDotCase method
Converts the string to UPPER.DOT.CASE. Example: 'HelloWorld' -> 'HELLO.WORLD'
Implementation
String toUpperDotCase() => toDotCase().toUpperCase();
Converts the string to UPPER.DOT.CASE. Example: 'HelloWorld' -> 'HELLO.WORLD'
String toUpperDotCase() => toDotCase().toUpperCase();