update_message_reaction property
UpdateMessageReaction
get
update_message_reaction
Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual
Implementation
UpdateMessageReaction get update_message_reaction {
try {
if (rawData["update_message_reaction"] is Map == false) {
return UpdateMessageReaction({});
}
return UpdateMessageReaction(rawData["update_message_reaction"] as Map);
} catch (e) {
return UpdateMessageReaction({});
}
}
set
update_message_reaction
(UpdateMessageReaction value)
Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual
Implementation
set update_message_reaction(UpdateMessageReaction value) {
rawData["update_message_reaction"] = value.toJson();
}