ColabShimmerCustom constructor

const ColabShimmerCustom({
  1. Key? key,
  2. Color baseColor = colorLine,
  3. Color highlightColor = backgroundColor,
  4. required double height,
  5. double width = double.infinity,
  6. Color color = backgroundColor,
  7. EdgeInsets margin = EdgeInsets.zero,
})

Implementation

const ColabShimmerCustom({
  super.key,
  this.baseColor = colorLine,
  this.highlightColor = backgroundColor,
  required this.height,
  this.width = double.infinity,
  this.color = backgroundColor,
  this.margin = EdgeInsets.zero,
});