decapitalize method

String decapitalize()

Implementation

String decapitalize() =>
    isEmpty ? '' : '${this[0].toLowerCase()}${substring(1)}';