OffstageModifier constructor

const OffstageModifier({
  1. Key? key,
  2. Widget? child,
  3. Key? modifierKey,
  4. bool offstage = true,
})

Creates a widget that visually hides its child.

Implementation

const OffstageModifier({
  super.key,
  super.child,
  super.modifierKey,
  this.offstage = true,
});