StacVisibility constructor

const StacVisibility({
  1. bool? visible,
  2. StacWidget? child,
  3. StacWidget? replacement,
  4. bool? maintainState,
  5. bool? maintainAnimation,
  6. bool? maintainSize,
  7. bool? maintainSemantics,
  8. bool? maintainInteractivity,
})

Creates a StacVisibility with the given properties.

Implementation

const StacVisibility({
  this.visible,
  this.child,
  this.replacement,
  this.maintainState,
  this.maintainAnimation,
  this.maintainSize,
  this.maintainSemantics,
  this.maintainInteractivity,
});