standardUserDefaults
`UserDefaults` is a simple key-value persistent data store provided by Apple for macOS, iOS, watchOS, and tvOS. It is primarily used for storing small amounts of application-specific data, such as user preferences, settings, or simple state information.
The `UserDefaults` object acts as a central repository for these preferences. You can store various data types,
To use `UserDefaults`, you typically access a shared instance of the `UserDefaults` class. You can then use
It's important to note that `UserDefaults` is not intended for storing large amounts of data, sensitive information,
When an application is uninstalled, its `UserDefaults` data is also deleted. Changes made to `UserDefaults` are