DisplayFeatureSubScreenModifier constructor

const DisplayFeatureSubScreenModifier({
  1. Key? key,
  2. Widget? child,
  3. Key? modifierKey,
  4. Offset? anchorPoint,
})

Creates a widget that positions its child so that it avoids display features.

Implementation

const DisplayFeatureSubScreenModifier({
  super.key,
  super.child,
  super.modifierKey,
  this.anchorPoint,
});