I am new to flutter, and I want to get Timezone, language, and county Id when I run my project on my device android or iOS. It should detect Timezone, language and country I
you can use
import 'dart:io' show Platform; String languageCode = Platform.localeName.split('_')[0]; String countryCode = Platform.localeName.split('_')[1];