DateCellValue constructor

const DateCellValue({
  1. required int year,
  2. required int month,
  3. required int day,
})

Implementation

const DateCellValue({
  required this.year,
  required this.month,
  required this.day,
})  : assert(month <= 12 && month >= 1),
      assert(day <= 31 && day >= 1);