isIncrementOperator property Null safety
Return true
if this type of token represents an increment operator.
Implementation
bool get isIncrementOperator =>
this == TokenType.PLUS_PLUS || this == TokenType.MINUS_MINUS;
Return true
if this type of token represents an increment operator.
bool get isIncrementOperator =>
this == TokenType.PLUS_PLUS || this == TokenType.MINUS_MINUS;