Gets the full name of a weekday.
static String? getDayLongName(int? dayOfWeek) => dayOfWeek == null ? null : dayLongNames[dayOfWeek];