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