RadialConfirm constructor

const RadialConfirm({
  1. Key? key,
  2. Color? valueColor,
  3. Color? backgroundColor,
  4. required double strokeWidth,
  5. required int secondsToConfirm,
  6. required double radius,
  7. required Widget child,
  8. required Function onConfirmed,
})

Implementation

const RadialConfirm({
  Key? key,
  this.valueColor,
  this.backgroundColor,
  required this.strokeWidth,
  required this.secondsToConfirm,
  required this.radius,
  required this.child,
  required this.onConfirmed,
}) : super(key: key);