pascalName property

String pascalName

Implementation

String get pascalName {
  if (isEmpty) {
    return this;
  }
  return '${substring(0, 1).toUpperCase()}${substring(1)}';
}