toUpper method

void toUpper()

Converts the string to uppercase.

Implementation

void toUpper() => value = value.toUpperCase();