appClassName property

String get appClassName

Get the app class name (PascalCase)

Implementation

String get appClassName {
  return appName.split(' ').map((word) =>
      word.substring(0, 1).toUpperCase() + word.substring(1).toLowerCase()
  ).join('');
}