ImageShadow constructor

ImageShadow({
  1. Key? key,
  2. double blurRadius = 8.0,
  3. double borderRadius = 0.0,
  4. double scale = 1.0,
  5. Offset offset = const Offset(8.0, 8.0),
  6. required Image image,
})

Implementation

ImageShadow({
  Key? key,
  this.blurRadius = 8.0,
  this.borderRadius = 0.0,
  this.scale = 1.0,
  this.offset = const Offset(8.0, 8.0),
  required this.image,
}) : super(key: key);