OverlayHelper constructor

OverlayHelper({
  1. double? height,
  2. double? width,
  3. required double notificationMargin,
  4. required Alignment position,
  5. required BuildContext context,
  6. required StackedOptions? stackedOptions,
})

Implementation

factory OverlayHelper({
  double? height,
  double? width,
  required double notificationMargin,
  required Alignment position,
  required BuildContext context,
  required StackedOptions? stackedOptions,
}) =>
    _OverlayHelper(
      height: height,
      width: width,
      notificationMargin: notificationMargin,
      position: position,
      context: context,
      stackedOptions: stackedOptions,
    );