findDeviceLocale method
Return the device current locale
Implementation
Future<Locale> findDeviceLocale() async {
final systemLocale = ui.window.locale;
MessagePrinter.info("The system locale is $systemLocale");
return Future.value(systemLocale);
}