BaseLoad constructor

const BaseLoad({
  1. Key? key,
  2. bool isLoading = true,
  3. Widget? child,
  4. double height = 80,
  5. double width = 120,
  6. double radius = 16,
  7. Color? baseColor,
  8. Color? highlightColor,
})

Implementation

const BaseLoad({
  super.key,
  this.isLoading = true,
  this.child,
  this.height = 80,
  this.width = 120,
  this.radius = 16,
  this.baseColor,
  this.highlightColor,
});