pascalCase property
String
get
pascalCase
Gets the text in PascalCase format.
Example: "hello world".pascalCase returns "HelloWorld"
Implementation
String get pascalCase => ReCase(this).pascalCase;
Gets the text in PascalCase format.
Example: "hello world".pascalCase returns "HelloWorld"
String get pascalCase => ReCase(this).pascalCase;