position property

num? get position

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

Implementation

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

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

Implementation

set position(num? value) {
  rawData["position"] = value;
}