toScreamingCase property

String toScreamingCase

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

Implementation

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