sticker_width property

num? get sticker_width

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

Implementation

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

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

Implementation

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