setTitle method
Set the title field and return this
final embed = EmbedBuilder()
.setTitle('My title');
Implementation
EmbedBuilder setTitle (String value) {
title = value;
return this;
}
Set the title field and return this
final embed = EmbedBuilder()
.setTitle('My title');
EmbedBuilder setTitle (String value) {
title = value;
return this;
}