TextEvent factory constructor

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

Source

factory TextEvent(String type,
    {bool canBubble: false,
    bool cancelable: false,
    Window view,
    String data}) {
  if (view == null) {
    view = window;
  }
  TextEvent e = document._createEvent("TextEvent");
  e._initTextEvent(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/TextEvent/TextEvent.html