CustomLoader constructor

const CustomLoader({
  1. Key? key,
  2. Color? color,
  3. double height = 100,
  4. double width = 100,
  5. double radius = 18,
})

Implementation

const CustomLoader({
  super.key,
  this.color,
  this.height = 100,
  this.width = 100,
  this.radius = 18,
});