getMentions method

List<String> getMentions()

Gets all mentions from the message.

Returns a list of all mentioned usernames without the leading '@'.

Implementation

List<String> getMentions() {
  return getAllEntityTexts(MessageEntityType.mention);
}