game_short_name property
String?
get
game_short_name
Generate By General Universe Script Dont edit by hand or anything manual
Implementation
String? get game_short_name {
try {
if (rawData["game_short_name"] is String == false) {
return null;
}
return rawData["game_short_name"] as String;
} catch (e) {
return null;
}
}
set
game_short_name
(String? value)
Generate By General Universe Script Dont edit by hand or anything manual
Implementation
set game_short_name(String? value) {
rawData["game_short_name"] = value;
}