Movatterモバイル変換


[0]ホーム

URL:


menu
  1. Dart
  2. dart:html
  3. Event
  4. Event.new factory constructor
Event.new
description

Event constructor

Event(
  1. Stringtype, {
  2. boolcanBubble =true,
  3. boolcancelable =true,
})

Implementation

factory Event(String type, {bool canBubble = true, bool cancelable = true}) {  return new Event.eventType(    'Event',    type,    canBubble: canBubble,    cancelable: cancelable,  );}
  1. Dart
  2. dart:html
  3. Event
  4. Event.new factory constructor
Event class

[8]ページ先頭

©2009-2025 Movatter.jp