setDescription method

EmbedBuilder setDescription(
  1. String value
)

Set the description field and return this

Example :

final embed = EmbedBuilder()
  .setDescription('My description');

Implementation

EmbedBuilder setDescription (String value) {
  description = value;
  return this;
}