RitoBlockPaint constructor

RitoBlockPaint({
  1. RitoBackgroundPaint? background,
  2. RitoBlockBorder? border,
  3. RitoBlockRadius? radius,
  4. required List<RitoBoxShadow> boxShadows,
})

Implementation

RitoBlockPaint({
  this.background,
  this.border,
  this.radius,
  required List<RitoBoxShadow> boxShadows,
}) : boxShadows = List<RitoBoxShadow>.unmodifiable(boxShadows);