OverlaySideGesture constructor

const OverlaySideGesture({
  1. Key? key,
  2. double? left = 0,
  3. double? right = 0,
  4. double? top = 0,
  5. double? bottom = 0,
  6. VoidCallback? onTap,
  7. bool useGesture = true,
  8. required GlobalKey<State<StatefulWidget>> sizeKey,
  9. required WidgetBuilder builder,
  10. required UserGestureController<OverlayMixin> entry,
  11. Widget transition(
    1. Widget child
    )?,
})

Implementation

const OverlaySideGesture({
  Key? key,
  this.left = 0,
  this.right = 0,
  this.top = 0,
  this.bottom = 0,
  this.onTap,
  this.useGesture = true,
  required this.sizeKey,
  required this.builder,
  required this.entry,
  this.transition,
}) : super(key: key);