translateList static method
Implementation
static dynamic translateList(String key) {
return _localizedStrings.containsKey(key)
? List<String>.from(_localizedStrings[key] ?? '')
: [];
}
static dynamic translateList(String key) {
return _localizedStrings.containsKey(key)
? List<String>.from(_localizedStrings[key] ?? '')
: [];
}