is_topic_message property

bool? get is_topic_message

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

Implementation

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

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

Implementation

set is_topic_message(bool? value) {
  rawData["is_topic_message"] = value;
}