setFooter method
Set the footer field and return this
Example :
final embed = EmbedBuilder()
.setFooter(text: 'My title');
Implementation
EmbedBuilder setFooter ({ required String text, String? iconUrl, String? proxyIconUrl }) {
footer = Footer(text: text, iconUrl: iconUrl, proxyIconUrl: proxyIconUrl);
return this;
}