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