bDecorationWhiteShadow static method
Implementation
static BoxDecoration bDecorationWhiteShadow(
{double radius = 10, double borderWidth = 2, Color? color }) =>
BoxDecoration(
borderRadius: BorderRadius.circular(radius),
color: AppColors.white,
boxShadow: [BoxShadow(color: color ?? AppColors.primaryColor, blurRadius: 10)]);