ExpandingBoxLoader constructor

const ExpandingBoxLoader({
  1. Key? key,
  2. double boxWidth = 20,
  3. double minHeight = 20,
  4. double maxHeight = 60,
  5. Color boxColor = Colors.white,
})

Implementation

const ExpandingBoxLoader({
  super.key,
  this.boxWidth = 20,
  this.minHeight = 20,
  this.maxHeight = 60,
  this.boxColor = Colors.white,
});