toDotCase property

String toDotCase

Converts the string to dot.case. Example: "helloWorld" => "hello.world"

Implementation

String get toDotCase => toWords.join('.').toLowerCase();