CountDownText constructor

CountDownText({
  1. Key? key,
  2. required DateTime? due,
  3. required String? finishedText,
  4. bool? longDateName = false,
  5. TextStyle? style,
  6. bool? showLabel = false,
})

Implementation

CountDownText(
    {Key? key,
    required this.due,
    required this.finishedText,
    this.longDateName = false,
    this.style,
    this.showLabel = false})
    : super(key: key);