SheetConfiguration<T> constructor

const SheetConfiguration<T>({
  1. Anchor? anchor,
  2. required WidgetBuilder builder,
  3. OverlayPosition position = OverlayPosition.bottom,
  4. bool barrierDismissible = true,
  5. bool transformBackdrop = false,
  6. WidgetBuilder? backdropBuilder,
  7. Color? barrierColor,
  8. bool draggable = false,
  9. AnimationController? animationController,
  10. bool autoOpen = true,
  11. BoxConstraints? constraints,
  12. AlignmentGeometry? alignment,
})

Creates a SheetConfiguration.

Implementation

const SheetConfiguration({
  this.anchor,
  required this.builder,
  this.position = OverlayPosition.bottom,
  this.barrierDismissible = true,
  this.transformBackdrop = false,
  this.backdropBuilder,
  this.barrierColor,
  this.draggable = false,
  this.animationController,
  this.autoOpen = true,
  this.constraints,
  this.alignment,
});