isMinusOperator function

bool isMinusOperator(
  1. String value
)

Implementation

bool isMinusOperator(String value) => identical(value, "-");