CustomImageLoading constructor

const CustomImageLoading({
  1. Key? key,
  2. Color? iconColor,
  3. Color? backgroundColor,
  4. Color? outlineColor,
  5. double progress = 1,
})

Implementation

const CustomImageLoading({
  super.key,
  this.iconColor,
  this.backgroundColor,
  this.outlineColor,
  this.progress = 1,
});