ShadowRadius constructor

ShadowRadius({
  1. Radius topLeft = Radius.zero,
  2. Radius topRight = Radius.zero,
  3. Radius bottomLeft = Radius.zero,
  4. Radius bottomRight = Radius.zero,
})

Implementation

ShadowRadius({
  this.topLeft = Radius.zero,
  this.topRight = Radius.zero,
  this.bottomLeft = Radius.zero,
  this.bottomRight = Radius.zero,
});