Added clear character

[ci skip]
This commit is contained in:
Szymon Uglis 2020-06-26 00:43:35 +02:00
parent a976e63cc1
commit b81fc735be

View file

@ -2,6 +2,9 @@ part of nyxx;
/// Allows to create pre built custom messages which can be passed to classes which inherits from [ISend].
class MessageBuilder {
/// Clear character which can be used to skip first line in message body or sanitize message content
static const clearCharacter = "";
final _content = StringBuffer();
/// Embed to include in message
@ -53,6 +56,9 @@ class MessageBuilder {
addAttachment(AttachmentBuilder.path(path, name: name, spoiler: spoiler));
}
/// Appends clear character. Can be used to skip first line in message body.
void appendClearCharacter() => _content.writeln(clearCharacter);
/// Appends empty line to message
void appendNewLine() => _content.writeln();