isEnglish static method

bool isEnglish()

判断当前是否为英语用户

Implementation

static bool isEnglish() =>
    countryCode.toLowerCase() == 'en' || Platform.localeName.endsWith('EN');