customTileBoxShadow function

BoxShadow customTileBoxShadow(
  1. bool onWhiteBackground
)

Implementation

BoxShadow customTileBoxShadow(bool onWhiteBackground) => BoxShadow(
      color: onWhiteBackground ? shadowWhiteColor : shadowColor,
      offset: shadowOffset,
      blurRadius: shadowBlurRadius,
    );