SpinnerContentWidget constructor

const SpinnerContentWidget({
  1. Key? key,
  2. String? text,
  3. Color? textColor,
  4. Color? color,
  5. double? spinnerHeight,
  6. double? spinnerWidth,
})

Implementation

const SpinnerContentWidget({
  Key? key,
  this.text,
  this.textColor,
  this.color,
  this.spinnerHeight,
  this.spinnerWidth,
}) : super(key: key);