GuiShadow constructor

const GuiShadow({
  1. required Color color,
  2. required double elevation,
})

Define a shadow with color and elevation.

Implementation

const GuiShadow({
  required this.color,
  required this.elevation,
});