Shadow constructor

Shadow({
  1. String? color,
  2. double? opacity,
  3. double? blurRadius,
  4. Offset? offset,
  5. double? intensity,
})

Implementation

Shadow({
  this.color,
  this.opacity,
  this.blurRadius,
  this.offset,
  this.intensity,
});