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