LoadingWidget constructor

const LoadingWidget({
  1. Key? key,
  2. int itemCount = 4,
  3. double borderRadius = 12,
  4. Color highlightColor = Colors.white,
  5. Color baseColor = const Color(0xFFE0E0E0),
  6. EdgeInsetsGeometry margin = const EdgeInsets.only(top: 12, left: 12, right: 12),
})

Implementation

const LoadingWidget({
  Key? key,
  this.itemCount = 4,
  this.borderRadius = 12,
  this.highlightColor = Colors.white,
  this.baseColor = const Color(0xFFE0E0E0),
  this.margin = const EdgeInsets.only(top: 12, left: 12, right: 12),
}) : super(key: key);