NeoShapeLoader constructor

const NeoShapeLoader({
  1. Key? key,
  2. double size = 132,
  3. String? label,
  4. Duration duration = const Duration(milliseconds: 960),
})

Creates a NeoShapeLoader instance.

Implementation

const NeoShapeLoader({
  super.key,
  this.size = 132,
  this.label,
  this.duration = const Duration(milliseconds: 960),
});