isObjectFirstFieldAfterHyphen function

bool isObjectFirstFieldAfterHyphen(
  1. String content
)

Checks if content represents an object first field after a hyphen

Implementation

bool isObjectFirstFieldAfterHyphen(String content) {
  return findUnquotedChar(content, colon) != -1;
}