normalize property

String get normalize

To upper case the first letter and other lower case

Implementation

String get normalize {
  if (isNotEmpty) {
    return this[0].toUpperCase() + substring(1).toLowerCase();
  }
  return this;
}