toUpperLowerCase property

String get toUpperLowerCase

Implementation

String get toUpperLowerCase{
 return this[0].toUpperCase() + this.substring(1,this.length);
}