dispatchEvent top-level property

({bool Function(Event event) $1, bool Function(Event event) $2}) get dispatchEvent

Overload accessor: $1, $2

Implementation

({
  /// Dispatches a synthetic event event to target and returns true if either event's cancelable attribute value is false or its preventDefault() method was not invoked, and false otherwise.
  ///
  /// [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventTarget/dispatchEvent)
  _i2.bool Function(_i3.Event event) $1,

  /// Dispatches a synthetic event event to target and returns true if either event's cancelable attribute value is false or its preventDefault() method was not invoked, and false otherwise.
  ///
  /// [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventTarget/dispatchEvent)
  _i2.bool Function(_i3.Event event) $2,
}) get dispatchEvent => (
      $1: _dispatchEvent$1,
      $2: _dispatchEvent$2,
    );