BoxShadowEffect constructor

const BoxShadowEffect({
  1. Duration? delay,
  2. Duration? duration,
  3. Curve? curve,
  4. BoxShadow? begin,
  5. BoxShadow? end,
  6. BorderRadius? borderRadius,
})

Implementation

const BoxShadowEffect({
  super.delay,
  super.duration,
  super.curve,
  BoxShadow? begin,
  BoxShadow? end,
  this.borderRadius,
}) : super(
        begin: begin ?? neutralValue,
        end: end ?? (begin == null ? defaultValue : neutralValue),
      );