ConfirmationTimer constructor

const ConfirmationTimer({
  1. Key? key,
  2. required int timerCount,
  3. String? title,
  4. String? subtitle,
  5. bool withoutOuterBox = false,
  6. double width = 259,
  7. double height = 90,
  8. Decoration? decoration,
  9. EdgeInsetsGeometry? padding,
  10. bool smallTextMobile = true,
})

Implementation

const ConfirmationTimer({
  super.key,
  required this.timerCount,
  this.title,
  this.subtitle,
  this.withoutOuterBox = false,
  this.width = 259,
  this.height = 90,
  this.decoration,
  this.padding,
  this.smallTextMobile = true,
});