DateBox constructor

const DateBox({
  1. required DateTime dateParsed,
  2. required double size,
  3. bool vertical = true,
  4. bool shadowed = false,
  5. FontWeight? weight,
  6. Color? color,
  7. Key? key,
})

Implementation

const DateBox(
    {required this.dateParsed,
    required this.size,
    this.vertical = true,
    this.shadowed = false,
    this.weight,
    this.color,
    super.key});