toScreamingSnakeCase property

String get toScreamingSnakeCase

'hello world' -> 'HELLO_WORLD'

Implementation

String get toScreamingSnakeCase => toSnakeCase.toUpperCase();