Confirm constructor

Confirm({
  1. Icon? icon,
  2. Color? color,
  3. String? title,
  4. bool? transparent,
  5. Text? btnOneText,
  6. Text? btnTwoText,
  7. Color? btnOneColor,
  8. Color? btnTwoColor,
  9. required String? description,
  10. required Curve animationCurve,
  11. required int animDuration,
  12. Function? btnOneOnclick,
  13. Function? btnTwoOnclick,
})

Implementation

Confirm({
  this.icon,
  this.color,
  this.title,
  this.transparent,
  this.btnOneText,
  this.btnTwoText,
  this.btnOneColor,
  this.btnTwoColor,
  required this.description,
  required this.animationCurve,
  required this.animDuration,
  this.btnOneOnclick,
  this.btnTwoOnclick,
});