clearTouchPoint method

void clearTouchPoint()

Implementation

void clearTouchPoint() {
  if (_isCanTouch && widget.touchSet!.touchBack != null) {
    widget.touchSet!.touchBack!(null, null);
  }
  _lastTouchModel = null;
  setState(() {});
}