Loader constructor

const Loader({
  1. double size = 24,
  2. String? color,
  3. String? label,
  4. Key? key,
})

Implementation

const Loader({
  this.size = 24,
  this.color,
  this.label,
  super.key,
});