WinLoading constructor

const WinLoading({
  1. Color color = Colors.white,
  2. double radius = 3,
  3. double gap = 0.04,
  4. double amount = 5,
  5. double width = 60,
  6. double height = 60,
  7. Duration duration = const Duration(milliseconds: 5200),
  8. Cubic cubic = const Cubic(.21, .6, .59, .8),
  9. Key? key,
})

Implementation

const WinLoading({
  this.color = Colors.white,
  this.radius = 3,
  this.gap = 0.04,
  this.amount = 5,
  this.width = 60,
  this.height = 60,
  this.duration = const Duration(milliseconds: 5200),
  this.cubic = const Cubic(.21, .6, .59, .8),
  Key? key,
}) : super(key: key);