dateFromPage static method
Will always return UTC Dates
Implementation
static DateTime dateFromPage(int page) {
final date = DateTime.fromMillisecondsSinceEpoch(
page * Duration.millisecondsPerDay,
// This has to be in utc, because the timetable package works only in utc
isUtc: true,
).asLocal;
assert(date.debugCheckIsValidTimetableDate());
return date;
}