sameLocale method

Implementation

bool sameLocale(BaseAppLocale other) {
  return languageCode == other.languageCode &&
      scriptCode == other.scriptCode &&
      countryCode == other.countryCode;
}