strings property
List<LanguagePackString>
get
strings
Generate By General Universe Script Dont edit by hand or anything manual
Implementation
List<LanguagePackString> get strings {
try {
if (rawData["strings"] is List == false) {
return [];
}
return (rawData["strings"] as List).map((e) => LanguagePackString(e as Map)).toList().cast<LanguagePackString>();
} catch (e) {
return [];
}
}
set
strings
(List<LanguagePackString> values)
Generate By General Universe Script Dont edit by hand or anything manual
Implementation
set strings(List<LanguagePackString> values) {
rawData["strings"] = values.map((value) => value.toJson()).toList();
}