DisplayFeatureSubScreen constructor

const DisplayFeatureSubScreen(
  1. {Key? key,
  2. Offset? anchorPoint,
  3. required Widget child}
)

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

Implementation

const DisplayFeatureSubScreen({
  super.key,
  this.anchorPoint,
  required this.child,
});