onPointerOut property

Callback for when the pointer is moved out of an element, or out of one of its children

Implementation

@override
PointerEventCallback? get onPointerOut =>
    (props[_$key__onPointerOut___$UbiquitousDomPropsMixin] ?? null)
        as PointerEventCallback?;
  1. @override
void onPointerOut=(PointerEventCallback? value)

Callback for when the pointer is moved out of an element, or out of one of its children

Implementation

@override
set onPointerOut(PointerEventCallback? value) =>
    props[_$key__onPointerOut___$UbiquitousDomPropsMixin] = value;