OverlayHelper constructor
OverlayHelper({
- double? height,
- double? width,
- required double notificationMargin,
- required Alignment position,
- required BuildContext context,
- 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,
);