StreamCountdownButton constructor

const StreamCountdownButton({
  1. Key? key,
  2. required int count,
})

Constructor for creating StreamCountdownButton.

Implementation

const StreamCountdownButton({
  super.key,
  required this.count,
});