Gets the abbreviated name of a weekday.
static String? getDayShortName(int? dayOfWeek) => dayOfWeek == null ? null : dayShortNames[dayOfWeek];