toStartCase property

String toStartCase

Converts string to start case. Example: "helloWorld" -> "HelloWorld"

Implementation

String get toStartCase => startCase(this);