isCamelCase property
bool
get
isCamelCase
Implementation
bool get isCamelCase =>
!(isEmpty ||
contains(RegExp('[^a-zA-Z0-9]+')) ||
startsWith(RegExp('[0-9]+'))) &&
this[0].toLowerCase() == this[0];