SdlxAudioDeviceEvent.formatChanged constructor

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

Implementation

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