titleCase property

String get titleCase

Gets the text in Title Case format.

Example: "hello world" becomes "Hello World"

Implementation

String get titleCase => _getPascalCase(separator: ' ');