toUpperLowerCase property

String get toUpperLowerCase

Implementation

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