titleCase property
String
get
titleCase
Gets the text in Title Case format.
Example: "hello world" becomes "Hello World"
Implementation
String get titleCase => _getPascalCase(separator: ' ');
Gets the text in Title Case format.
Example: "hello world" becomes "Hello World"
String get titleCase => _getPascalCase(separator: ' ');