toLower method

void toLower()

Converts the string to lowercase.

Implementation

void toLower() => value = value.toLowerCase();