toScreamingCase property

String get toScreamingCase

Converts the string to SCREAMINGCASE (UPPERCASE). Example: "helloWorld" => "HELLOWORLD"

Implementation

String get toScreamingCase => toWords.join().toUpperCase();