CurrentSceneTransitionChanged constructor

CurrentSceneTransitionChanged({
  1. required String transitionName,
  2. String? transitionUuid,
})

Creates an event for when the current scene transition changes.

Implementation

CurrentSceneTransitionChanged({
  required this.transitionName,
  this.transitionUuid,
});