sticker_height property

num? get sticker_height

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

Implementation

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

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

Implementation

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