W3cubDocs

/Dart 2

CompositionEvent constructor

CompositionEvent(String type, { bool canBubble: false, bool cancelable: false, Window view, String data, String locale })

Implementation

factory CompositionEvent(String type,
    {bool canBubble: false,
    bool cancelable: false,
    Window view,
    String data,
    String locale}) {
  if (view == null) {
    view = window;
  }
  CompositionEvent e = document._createEvent("CompositionEvent");

  if (Device.isFirefox) {
    // Firefox requires the locale parameter that isn't supported elsewhere.
    JS('void', '#.initCompositionEvent(#, #, #, #, #, #)', e, type, canBubble,
        cancelable, view, data, locale);
  } else {
    e._initCompositionEvent(type, canBubble, cancelable, view, data);
  }

  return e;
}

© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dart.dev/stable/2.5.0/dart-html/CompositionEvent/CompositionEvent.html