toFlatCase property

String get toFlatCase

Converts the string to flatcase. Example: "HelloWorld" => "helloworld"

Implementation

String get toFlatCase => toWords.join().toLowerCase();