SceneItemEnableStateChanged constructor

SceneItemEnableStateChanged({
  1. required String sceneName,
  2. required int sceneItemId,
  3. required bool sceneItemEnabled,
})

Creates an event for when a scene item's enabled state changes.

Implementation

SceneItemEnableStateChanged({
  required this.sceneName,
  required this.sceneItemId,
  required this.sceneItemEnabled,
});