setFooter method
Implementation
MessageEmbedBuilder setFooter(
{required String text, String? iconUrl, String? proxyIconUrl}) {
footer = MessageEmbedFooter(
text: text, iconUrl: iconUrl, proxyIconUrl: proxyIconUrl);
return this;
}
MessageEmbedBuilder setFooter(
{required String text, String? iconUrl, String? proxyIconUrl}) {
footer = MessageEmbedFooter(
text: text, iconUrl: iconUrl, proxyIconUrl: proxyIconUrl);
return this;
}