Shadow constructor

const Shadow({
  1. required double blur,
  2. double dx = 0,
  3. double dy = 0,
  4. double spread = 0,
  5. required ColorToken color,
})

Implementation

const Shadow({
  required this.blur,
  this.dx = 0,
  this.dy = 0,
  this.spread = 0,
  required this.color,
});