setFooter method

MessageEmbedBuilder setFooter({
  1. required String text,
  2. String? iconUrl,
  3. String? proxyIconUrl,
})

Implementation

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