HourRow constructor

const HourRow({
  1. Key? key,
  2. required int hour,
  3. required double top,
  4. double hourHeight = 60.0,
  5. double timeColumnWidth = 56.0,
})

Implementation

const HourRow({
  super.key,
  required this.hour,
  required this.top,
  this.hourHeight = 60.0,
  this.timeColumnWidth = 56.0,
});