FlipperShadow constructor

const FlipperShadow({
  1. Key? key,
  2. required double width,
  3. double blurSigma = 11,
  4. double height = 7,
  5. Color color = const Color(0xff8a8a8a),
  6. double spacing = 30,
})

Implementation

const FlipperShadow(
    {Key? key,
    required this.width,
    this.blurSigma = 11,
    this.height = 7,
    this.color = const Color(0xff8a8a8a),
    this.spacing = 30})
    : super(key: key);