Customize the start of the week
masterBy default, locales have a defined start of the week (e.g., en_US uses StartOfWeek.sunday). You can override this globally using Jiffy.setLocale with the startOfWeek parameter, which accepts values from the StartOFWeek enum (e.g., StartOFWeek.monday, StartOFWeek.saturday).
await Jiffy.setLocale(
locale: 'en_US',
startOfWeek: StartOFWeek.saturday,
);