shadowLeft method

dynamic shadowLeft({
  1. Color? color,
})

Implementation

shadowLeft({Color? color}) {
  return [
    BoxShadow(
      offset: const Offset(-3, 0),
      blurRadius: 5,
      color: color ?? const Color.fromRGBO(0, 0, 0, 0.05),
    ),
    BoxShadow(
      offset: const Offset(-1, 0),
      blurRadius: 2,
      color: color ?? const Color.fromRGBO(0, 0, 0, 0.15),
    ),
  ];
}