Sheet constructor

const Sheet({
  1. Key? key,
  2. Duration? duration,
  3. Curve? curve,
  4. SheetVariant? variant,
  5. SheetSeverity? severity,
  6. double? width,
  7. double? height,
  8. EdgeInsetsGeometry? margin,
  9. EdgeInsetsGeometry? padding,
  10. Alignment? alignment,
  11. Clip? clipBehavior,
  12. Color? overlayColor,
  13. Color? shadowColor,
  14. double? elevation,
  15. TextStyle? foregroundStyle,
  16. Color? foregroundColor,
  17. double? foregroundOpacity,
  18. int? foregroundAlpha,
  19. double? foregroundSpacing,
  20. Color? backgroundColor,
  21. double? backgroundOpacity,
  22. int? backgroundAlpha,
  23. Color? borderColor,
  24. double? borderOpacity,
  25. int? borderAlpha,
  26. double? borderWidth,
  27. BorderRadius? borderRadius,
  28. BorderStyle? borderStyle,
  29. BoxShape? shape,
  30. Color? iconColor,
  31. double? iconOpacity,
  32. double? iconSize,
  33. SheetStyle? style,
  34. String? tooltip,
  35. Widget? child,
})

Implementation

const Sheet({
  super.key,
  this.duration,
  this.curve,
  this.variant,
  this.severity,
  this.width,
  this.height,
  this.margin,
  this.padding,
  this.alignment,
  this.clipBehavior,
  this.overlayColor,
  this.shadowColor,
  this.elevation,
  this.foregroundStyle,
  this.foregroundColor,
  this.foregroundOpacity,
  this.foregroundAlpha,
  this.foregroundSpacing,
  this.backgroundColor,
  this.backgroundOpacity,
  this.backgroundAlpha,
  this.borderColor,
  this.borderOpacity,
  this.borderAlpha,
  this.borderWidth,
  this.borderRadius,
  this.borderStyle,
  this.shape,
  this.iconColor,
  this.iconOpacity,
  this.iconSize,
  this.style,
  this.tooltip,
  this.child,
});