toPascalCase property
String
get
toPascalCase
将字符串转换为帕斯卡命名法:大驼峰命名 (to PascalCase) Convert strings into Pascal nomenclature: big hump naming
Implementation
String get toPascalCase => _convertToCamelCase(this, true);