StacDrawer constructor

const StacDrawer({
  1. StacColor? backgroundColor,
  2. double? elevation,
  3. StacColor? shadowColor,
  4. StacColor? surfaceTintColor,
  5. StacShapeBorder? shape,
  6. double? width,
  7. StacWidget? child,
  8. String? semanticLabel,
  9. StacClip? clipBehavior,
})

Creates a StacDrawer.

Implementation

const StacDrawer({
  this.backgroundColor,
  this.elevation,
  this.shadowColor,
  this.surfaceTintColor,
  this.shape,
  this.width,
  this.child,
  this.semanticLabel,
  this.clipBehavior,
});