dotCase property

String get dotCase

Gets the text in dot.case format.

Example: "hello world".dotCase returns "hello.world"

Implementation

String get dotCase => ReCase(this).dotCase;