button_id property

num? get button_id

Generate By General Universe Script Dont edit by hand or anything manual

Implementation

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

Generate By General Universe Script Dont edit by hand or anything manual

Implementation

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