toCaptalize method
Implementation
String toCaptalize() {
if (isEmpty) return this;
return '${this[0].toUpperCase()}${substring(1, length)}';
}
String toCaptalize() {
if (isEmpty) return this;
return '${this[0].toUpperCase()}${substring(1, length)}';
}