onBeforeCut method

WidgetElementVisible onBeforeCut(
  1. dynamic fun(
    1. Element,
    2. Event
    )?
)
inherited

The cut event fires when the user initiates a cut action through the browser's user interface. Read more...

Implementation

WidgetElementVisible onBeforeCut(Function(Element, Event)? fun) {
  if (fun != null) on.call('beforecut', fun);
  return this;
}