SdlxAudioDeviceEvent.added constructor

SdlxAudioDeviceEvent.added({
  1. int reserved = 0,
  2. int timestamp = 0,
  3. int which = 0,
  4. bool recording = false,
})

Implementation

factory SdlxAudioDeviceEvent.added({
  int reserved = 0,
  int timestamp = 0,
  int which = 0,
  bool recording = false,
}) => SdlxAudioDeviceEvent(
  type: SDL_EVENT_AUDIO_DEVICE_ADDED,
  reserved: reserved,
  timestamp: timestamp,
  which: which,
  recording: recording,
);