BoxShadow constructor

const BoxShadow({
  1. Color color = const Color(0x33000000),
  2. double blurRadius = 0,
  3. double spreadRadius = 0,
  4. double offsetX = 0,
  5. double offsetY = 0,
})

Implementation

const BoxShadow({
  this.color = const Color(0x33000000),
  this.blurRadius = 0,
  this.spreadRadius = 0,
  this.offsetX = 0,
  this.offsetY = 0,
});