isPrivate static method

bool isPrivate(
  1. String token
)

returns true if input token is an identifier and starts with underscore(_)

Implementation

static bool isPrivate(String token) =>
    regExpPrivate.stringMatch(token) == token;