isJump function

bool isJump(
  1. String value
)

Returns true if the string or value is a jump.

Implementation

bool isJump(String value) =>
    value.startsWith(_startJumpConstruction) &&
    value.endsWith(_endJumpConstruction);