getPath property

Function getPath
getter/setter pair

Implementation

static Function getPath = (String languageCode, [String? countryCode]) {
  if (countryCode != null) {
    return '$_resourceDir${languageCode}_$countryCode.json';
  }
  return '$_resourceDir$languageCode.json';
};