tryToLowerCase method

String? tryToLowerCase()

Converts the string to lowercase if it's not null.

Implementation

String? tryToLowerCase() => this?.toLowerCase();