setUrl method

EmbedBuilder setUrl(
  1. String url
)

Set the url field and return this

Example :

final embed = EmbedBuilder()
  .setUrl('https://.....com');

Implementation

EmbedBuilder setUrl (String url) {
  this.url = url;
  return this;
}