isEnglish static method
判断当前是否为英语用户
Implementation
static bool isEnglish() =>
countryCode.toLowerCase() == 'en' || Platform.localeName.endsWith('EN');
判断当前是否为英语用户
static bool isEnglish() =>
countryCode.toLowerCase() == 'en' || Platform.localeName.endsWith('EN');