Loader constructor

Loader({
  1. Color? color,
  2. Decoration? decoration,
  3. int? size,
  4. double? value,
  5. Animation<Color?>? valueColor,
  6. Color? accentColor,
  7. Key? key,
})

Implementation

Loader({
  this.color,
  this.decoration,
  this.size,
  this.value,
  this.valueColor,
  this.accentColor,
  super.key,
});