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