onTouchStart property

Stream<TouchEvent> onTouchStart
@DocsEditable(), @DomName('Document.ontouchstart'), @Experimental()

Stream of touchstart events handled by this Document.

Implementation

@DomName('Document.ontouchstart')
@DocsEditable()
// http://www.w3.org/TR/touch-events/, http://www.chromestatus.com/features
@Experimental()
Stream<TouchEvent> get onTouchStart =>
    Element.touchStartEvent.forTarget(this);