onPanStart method
Handles pan start event. Returns true if the pan was started on a drawing tool, false otherwise.
Implementation
bool onPanStart(DragStartDetails details) {
// Default implementation returns false
// Subclasses can override this to provide specific pan start handling logic
return false;
}