GrxSpinnerLoading constructor

GrxSpinnerLoading({
  1. Key? key,
  2. double lineWidth = 5.0,
  3. double size = 30.0,
  4. Duration duration = const Duration(milliseconds: 500),
  5. AnimationController? controller,
  6. Color? color,
})

Implementation

GrxSpinnerLoading({
  super.key,
  this.lineWidth = 5.0,
  this.size = 30.0,
  this.duration = const Duration(milliseconds: 500),
  this.controller,
  final Color? color,
}) : color = color ?? GrxColors.primary.shade600;