composeCountryCode method

  1. @protected
String composeCountryCode(
  1. Locale locale
)

Return the country code to attach to the file name, if required

Implementation

@protected
String composeCountryCode(Locale locale) {
  String countryCode = "";
  if (useCountryCode && locale.countryCode != null) {
    countryCode = "_${locale.countryCode}";
  }
  return countryCode;
}