isFuncExp method

bool isFuncExp(
  1. String exp
)

Implementation

bool isFuncExp(String exp) {
  return FunctionExpression().hitTest(exp, '');
}