SheetStyle constructor

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

SheetStyle with an empty value.

Implementation

const SheetStyle({
  this.variant,
  this.severity,
  this.width,
  this.height,
  this.margin,
  this.padding,
  this.alignment,
  this.clipBehavior,
  this.overlayDisabled,
  this.overlayColor,
  this.shadowColor,
  this.surfaceTint,
  this.elevation,
  this.foregroundStyle,
  this.foregroundColor,
  this.foregroundOpacity,
  this.foregroundAlpha,
  this.foregroundSpacing,
  this.foregroundLoosen,
  this.foregroundExpanded,
  this.foregroundAlign,
  this.foregroundJustify,
  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,
});