update_sticker_set property

UpdateStickerSet get update_sticker_set

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

Implementation

UpdateStickerSet get update_sticker_set {
  try {
    if (rawData["update_sticker_set"] is Map == false) {
      return UpdateStickerSet({});
    }
    return UpdateStickerSet(rawData["update_sticker_set"] as Map);
  } catch (e) {
    return UpdateStickerSet({});
  }
}
set update_sticker_set (UpdateStickerSet value)

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

Implementation

set update_sticker_set(UpdateStickerSet value) {
  rawData["update_sticker_set"] = value.toJson();
}