sameLocale method

bool sameLocale(
  1. BaseAppLocale<BaseTranslations> other
)

Implementation

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