monthsInRow method

Iterable<CalendarMonth> monthsInRow(
  1. int row
)

Implementation

Iterable<CalendarMonth> monthsInRow(int row) {
  return months!.where((m) => _isMonthInRow(m.month, row));
}