InitFlags constructor
const
InitFlags({})
Create an instance.
By default, all flags are set to false
. Instead of creating a new
instance with all flags set to true
, consider using the
everything constant.
Implementation
const InitFlags({
this.timer = false,
this.audio = false,
this.video = false,
this.joystick = false,
this.haptic = false,
this.gameController = false,
this.events = false,
this.sensor = false,
});