BeamParameters constructor

const BeamParameters({
  1. TransitionDelegate transitionDelegate = const DefaultTransitionDelegate(),
  2. RouteInformation? popConfiguration,
  3. bool beamBackOnPop = false,
  4. bool popBeamLocationOnPop = false,
  5. bool stacked = true,
})

Creates a BeamParameters with specified properties.

All attributes can be null.

Implementation

const BeamParameters({
  this.transitionDelegate = const DefaultTransitionDelegate(),
  this.popConfiguration,
  this.beamBackOnPop = false,
  this.popBeamLocationOnPop = false,
  this.stacked = true,
});