DrivenSpinnerThemeData constructor

const DrivenSpinnerThemeData({
  1. double? size,
  2. Color? color,
  3. Color? backgroundColor,
  4. double width = 4,
  5. double offset = 0,
  6. bool rounded = true,
})

Creates a theme data that can be used for DrivenSpinnerTheme.

Implementation

const DrivenSpinnerThemeData({
  this.size,
  this.color,
  this.backgroundColor,
  this.width = 4,
  this.offset = 0,
  this.rounded = true,
});