I am currently using AppLocalizations in my Flutter app to get strings from an arb file based on the language set in the OS. For example, if the OS language is set to English, the app will also display English strings.
However, I'd like to fetch strings in a specific language, different from the one currently set in the OS. For instance, even if the app is set to English, I'd like to display a Dutch string in a particular place.
How can I achieve this and fetch a string in a strictly defined language, regardless of the OS language setting?