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({
  Duration? delay,
  Duration? duration,
  Curve? curve,
  BoxShadow? begin,
  BoxShadow? end,
  this.borderRadius,
}) : super(
        delay: delay,
        duration: duration,
        curve: curve,
        begin: begin ?? neutralValue,
        end: end ?? (begin == null ? defaultValue : neutralValue),
      );