titleCase property
      
      String
      get
      titleCase
      
    
    
Gets the text in Title Case format.
Example: "hello world".titleCase returns "Hello World"
Implementation
String get titleCase => ReCase(this).titleCase;Gets the text in Title Case format.
Example: "hello world".titleCase returns "Hello World"
String get titleCase => ReCase(this).titleCase;