isCamelCase property

bool get isCamelCase

Implementation

bool get isCamelCase {
  if (this.characters.first == this.characters.first.toUpperCase()) {
    return true;
  } else {
    return false;
  }
}