beginDrag method

void beginDrag()

Starts finger ownership of the container displacement. The morph value is untouched: grabbing a still-opening overlay lets it keep materializing while it follows the hand.

Implementation

void beginDrag() {
  if (_finished) {
    return;
  }
  _drag.begin();
}