DotLoader constructor

const DotLoader({
  1. Key? key,
  2. String size = 'medium',
  3. Color color = Colors.blue,
  4. String? text,
  5. Color? textColor,
})

Implementation

const DotLoader({
  Key? key,
  this.size = 'medium',
  this.color = Colors.blue,
  this.text,
  this.textColor,
}) : super(key: key);