DrawerConfiguration<T> constructor

const DrawerConfiguration<T>({
  1. Anchor? anchor,
  2. required WidgetBuilder builder,
  3. OverlayPosition position = OverlayPosition.bottom,
  4. bool expands = false,
  5. bool draggable = true,
  6. bool barrierDismissible = true,
  7. WidgetBuilder? backdropBuilder,
  8. bool useSafeArea = true,
  9. bool? showDragHandle,
  10. BorderRadiusGeometry? borderRadius,
  11. Size? dragHandleSize,
  12. bool transformBackdrop = true,
  13. double? surfaceOpacity,
  14. double? surfaceBlur,
  15. Color? barrierColor,
  16. AnimationController? animationController,
  17. bool autoOpen = true,
  18. BoxConstraints? constraints,
  19. AlignmentGeometry? alignment,
})

Creates a DrawerConfiguration.

Implementation

const DrawerConfiguration({
  this.anchor,
  required this.builder,
  this.position = OverlayPosition.bottom,
  this.expands = false,
  this.draggable = true,
  this.barrierDismissible = true,
  this.backdropBuilder,
  this.useSafeArea = true,
  this.showDragHandle,
  this.borderRadius,
  this.dragHandleSize,
  this.transformBackdrop = true,
  this.surfaceOpacity,
  this.surfaceBlur,
  this.barrierColor,
  this.animationController,
  this.autoOpen = true,
  this.constraints,
  this.alignment,
});