import 'package:flutter/material.dart'; import 'package:prosappco/utils/time_of_day_extension.dart'; class TimeOfDayUtils { static List genRanges(TimeOfDay timeStart, TimeOfDay timeEnd, {int stepMinutes = 30}) { final step = stepMinutes.clamp(5, 480); List ranges = []; TimeOfDay current = timeStart; while (current.isBefore(timeEnd)) { ranges.add(current); current = current.add(minute: step); } return ranges; } }