LevelStub constructor

const LevelStub({
  1. AssetReference? music,
  2. List<Ambiance> ambiances = const [],
  3. List<RandomSound> randomSounds = const [],
})

Create an instance.

Implementation

const LevelStub({
  this.music,
  this.ambiances = const [],
  this.randomSounds = const [],
});