target_chat_current property

TargetChatCurrent get target_chat_current

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

Implementation

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

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

Implementation

set target_chat_current(TargetChatCurrent value) {
  rawData["target_chat_current"] = value.toJson();
}