isTitle static method

bool isTitle(
  1. String token
)

returns true if input token is an identifier and starts with capital letter

Implementation

static bool isTitle(String token) => regExpTitle.stringMatch(token) == token;