lowerCaseFirstLetter method
lower the first letter in word . Ex : ContactUs => contactUs
Implementation
String lowerCaseFirstLetter() {
return "${this[0].toLowerCase()}${substring(1)}";
}
lower the first letter in word . Ex : ContactUs => contactUs
String lowerCaseFirstLetter() {
return "${this[0].toLowerCase()}${substring(1)}";
}