SpinWidget constructor

const SpinWidget({
  1. Key? key,
  2. Widget? child,
  3. bool start = true,
  4. int seconds = 5,
  5. int delayed = 500,
})

Implementation

const SpinWidget(
    {Key? key,
    this.child,
    this.start = true,
    this.seconds = 5,
    this.delayed = 500})
    : super(key: key);