DropShadow constructor

DropShadow({
  1. int? azimuth,
  2. int? elevation,
  3. int? spread,
})

Implementation

DropShadow({int? azimuth, int? elevation, int? spread}) {
  _azimuth = azimuth;
  _elevation = elevation;
  _spread = spread;
}