DotSpinnerStatic constructor

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

Implementation

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