BoxShadowDto constructor

const BoxShadowDto({
  1. ColorDto? color,
  2. Offset? offset,
  3. double? blurRadius,
  4. double? spreadRadius,
})

Implementation

const BoxShadowDto({
  super.color,
  super.offset,
  super.blurRadius,
  this.spreadRadius,
});