DrivenSpinner constructor

const DrivenSpinner({
  1. Key? key,
  2. double? size,
  3. Color? color,
  4. Color? backgroundColor,
  5. double? width,
  6. double? offset,
  7. bool? rounded,
})

Creates a DrivenSpinner.

Implementation

const DrivenSpinner({
  super.key,
  this.size,
  this.color,
  this.backgroundColor,
  this.width,
  this.offset,
  this.rounded,
}) : super(null);