SdlxKeyboardDeviceEvent.removed constructor

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

Implementation

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