new_string property
LanguagePackString
get
new_string
Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual
Implementation
LanguagePackString get new_string {
try {
if (rawData["new_string"] is Map == false) {
return LanguagePackString({});
}
return LanguagePackString(rawData["new_string"] as Map);
} catch (e) {
return LanguagePackString({});
}
}
set
new_string
(LanguagePackString value)
Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual
Implementation
set new_string(LanguagePackString value) {
rawData["new_string"] = value.toJson();
}