dropShadow method

void dropShadow(
  1. int hShadow,
  2. int vShadow,
  3. int blur, {
  4. Color? shadowColor,
})

Implementation

void dropShadow(int hShadow, int vShadow, int blur, {Color? shadowColor}) {
  subCommand = DropShadowCmd(subCommand, hShadow, vShadow, blur,
      shadowColor: shadowColor);
}