ShimmerWidget constructor

const ShimmerWidget({
  1. Key? key,
  2. double radius = 0,
  3. required double height,
  4. required double width,
  5. EdgeInsets margin = const EdgeInsets.all(2),
  6. EdgeInsets padding = EdgeInsets.zero,
})

Implementation

const ShimmerWidget(
    {Key? key,
    this.radius = 0,
    required this.height,
    required this.width,
    this.margin = const EdgeInsets.all(2),
    this.padding = EdgeInsets.zero})
    : super(key: key, type: "container");