DigiaInlineCountdown constructor

const DigiaInlineCountdown({
  1. Key? key,
  2. required ResolvedInlineCountdownConfig config,
  3. required ValueChanged<bool> onTap,
  4. DateTime now()?,
  5. Duration tickInterval = const Duration(seconds: 1),
})

Implementation

const DigiaInlineCountdown({
  super.key,
  required this.config,
  required this.onTap,
  this.now,
  this.tickInterval = const Duration(seconds: 1),
});