onMouseLeave property

  1. @override
MouseEventCallback? onMouseLeave

Callback for when the pointer is moved out of an element

Implementation

@override
MouseEventCallback? get onMouseLeave =>
    (props[_$key__onMouseLeave___$UbiquitousDomPropsMixin] ?? null)
        as MouseEventCallback?;
  1. @override
void onMouseLeave=(MouseEventCallback? value)

Callback for when the pointer is moved out of an element

Implementation

@override
set onMouseLeave(MouseEventCallback? value) =>
    props[_$key__onMouseLeave___$UbiquitousDomPropsMixin] = value;