MessageDecoration class

Specifies formatting of String appended with MessageBuilder

Inheritance

Properties

hashCode int
The hash code for this object.
read-onlyinherited
runtimeType Type
A representation of the runtime type of the object.
read-onlyinherited
value String
Returns value of enum
read-onlyinherited

Methods

format(String text) String
Creates formatted string
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
override

Operators

operator ==(dynamic other) bool
The equality operator.
inherited

Constants

bold → const MessageDecoration
Bold text is surrounded with **
MessageDecoration._new("**")
codeLong → const MessageDecoration
Multiline code block is surrounded with ```
MessageDecoration._new("```")
codeSimple → const MessageDecoration
Inline code text is surrounded with `
MessageDecoration._new("`")
italics → const MessageDecoration
Italic text is surrounded with *
MessageDecoration._new("*")
spoiler → const MessageDecoration
Spoiler text is surrounded with ||. In discord client will render as clickable box to reveal text.
MessageDecoration._new("||")
strike → const MessageDecoration
Strike text is surrounded with ~~
MessageDecoration._new("~~")
underline → const MessageDecoration
Underlined text is surrounded with __
MessageDecoration._new("__")