getPassedUrlFromMessage method

String? getPassedUrlFromMessage()

Return the passed URL from a message.

Returns null if the message failed to be parsed.

Implementation

String? getPassedUrlFromMessage() {
  final match = _getRegExpMatchFromMessage();
  return match?.group(1);
}