PlanCell constructor

const PlanCell({
  1. Key? key,
  2. required DateTime date,
  3. required DateTime currentMonth,
})

A cell in the plan grid.

Implementation

const PlanCell({super.key, required this.date, required this.currentMonth});