MyLoader constructor

const MyLoader({
  1. Key? key,
  2. Color? color,
  3. double? size,
  4. double strokeWidth = 4.0,
  5. double? value,
  6. Color? backgroundColor,
})

Creates a customized loading indicator.

Implementation

const MyLoader({
  super.key,
  this.color,
  this.size,
  this.strokeWidth = 4.0,
  this.value,
  this.backgroundColor,
});