setAuthor method
Set the author field and return this
Example :
final embed = EmbedBuilder()
.setAuthor(name: 'John Doe');
Implementation
EmbedBuilder setAuthor ({ required String name, String? url, String? iconUrl, String? proxyIconUrl }) {
author = Author(name: name, url: url, iconUrl: iconUrl, proxyIconUrl: proxyIconUrl);
return this;
}