DateTimeCountDown constructor

const DateTimeCountDown({
  1. Key? key,
  2. required String expireAt,
  3. String expiredText = 'Time Expire',
  4. TextStyle textStyle = const TextStyle(color: Color(0xFFeb0339), fontWeight: FontWeight.w700),
})

Implementation

const DateTimeCountDown(
    {Key? key,
    required this.expireAt,
    this.expiredText = 'Time Expire',
    this.textStyle = const TextStyle(
        color: Color(0xFFeb0339), fontWeight: FontWeight.w700)})
    : super(key: key);