The example https://pub.dev/packages/get/example only shows setting the locale from a string manually:
void main() {
runApp(GetMaterialApp(
...
locale: Locale('pt', 'BR'),
...
If I don't use "locale: Locale ('pt', 'BR')", then code like Text("title".tr) don't work. So, I need setup current locale to "locale" property, but how get current locale?