sender_boost_count property

num? get sender_boost_count

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

Implementation

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

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

Implementation

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