toFlatCase property
String
get
toFlatCase
Converts the string to flatcase. Example: "HelloWorld" => "helloworld"
Implementation
String get toFlatCase => toWords.join().toLowerCase();
Converts the string to flatcase. Example: "HelloWorld" => "helloworld"
String get toFlatCase => toWords.join().toLowerCase();