BoxShadow constructor

const BoxShadow({
  1. PdfColor color = PdfColors.black,
  2. PdfPoint offset = PdfPoint.zero,
  3. double blurRadius = 0.0,
  4. double spreadRadius = 0.0,
})

Implementation

const BoxShadow({
  this.color = PdfColors.black,
  this.offset = PdfPoint.zero,
  this.blurRadius = 0.0,
  this.spreadRadius = 0.0,
});