y_shift property

double? get y_shift

Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual

Implementation

double? get y_shift {
  try {
    if (rawData["y_shift"] is double == false) {
      return null;
    }
    return rawData["y_shift"] as double;
  } catch (e) {
    return null;
  }
}
set y_shift (double? value)

Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual

Implementation

set y_shift(double? value) {
  rawData["y_shift"] = value;
}