isDecapitalized property
bool
get
isDecapitalized
Returns true
if the first character is lower case.
Implementation
bool get isDecapitalized => isNotEmpty && this[0].isLowerCase;
Returns true
if the first character is lower case.
bool get isDecapitalized => isNotEmpty && this[0].isLowerCase;