Scene constructor

Scene({
  1. required String sceneName,
  2. required int sceneIndex,
})

Implementation

Scene({
  required this.sceneName,
  required this.sceneIndex,
});