ShimmerCard constructor

const ShimmerCard({
  1. Key? key,
  2. required double width,
  3. required double height,
  4. Axis orientation = Axis.vertical,
  5. bool fillWidth = false,
  6. Color baseColor = Colors.grey,
  7. Color highlightColor = Colors.black12,
})

Implementation

const ShimmerCard(
    {super.key,
    required this.width,
    required this.height,
    this.orientation = Axis.vertical,
    this.fillWidth = false,
    this.baseColor = Colors.grey,
    this.highlightColor = Colors.black12});