SdlxKeyboardDeviceEvent.added constructor

SdlxKeyboardDeviceEvent.added({
  1. int reserved = 0,
  2. int timestamp = 0,
  3. int which = 0,
})

Implementation

factory SdlxKeyboardDeviceEvent.added({
  int reserved = 0,
  int timestamp = 0,
  int which = 0,
}) => SdlxKeyboardDeviceEvent(
  type: SDL_EVENT_KEYBOARD_ADDED,
  reserved: reserved,
  timestamp: timestamp,
  which: which,
);