On this page
CompositionEvent factory constructor
CompositionEvent(Source
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");
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.dartlang.org/stable/1.24.3/dart-html/CompositionEvent/CompositionEvent.html