setUrl method
Set the url
field and return this
final embed = EmbedBuilder()
.setUrl('https://.....com');
Implementation
EmbedBuilder setUrl (String url) {
this.url = url;
return this;
}
Set the url
field and return this
final embed = EmbedBuilder()
.setUrl('https://.....com');
EmbedBuilder setUrl (String url) {
this.url = url;
return this;
}