Shadow constructor

Shadow({
  1. required Widget child,
  2. int offsetX = 2,
  3. int offsetY = 1,
  4. Color? color,
  5. TerminalShadowStyle shadowStyle = TerminalShadowStyle.medium,
  6. Key? key,
})

Creates a terminal shadow.

Implementation

Shadow({
  required this.child,
  this.offsetX = 2,
  this.offsetY = 1,
  this.color,
  this.shadowStyle = TerminalShadowStyle.medium,
  super.key,
});