getUrls method

List<String> getUrls()

Gets all URLs from the message.

Returns a list of all URLs found in the message.

Implementation

List<String> getUrls() {
  return getAllEntityTexts(MessageEntityType.url);
}