clearTouchPoint method

void clearTouchPoint()

Implementation

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