dropShadow static method

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

Implementation

static DropShadow dropShadow({int? azimuth, int? elevation, int? spread}) {
  return DropShadow(azimuth: azimuth, elevation: elevation, spread: spread);
}