dispatchEnvelope method

  1. @override
void dispatchEnvelope({
  1. required String topic,
  2. required String envelope,
})
override

Implementation

@override
void dispatchEnvelope({
  required String topic,
  required String envelope,
}) async {
  core.logger.d(
    '[$runtimeType] dispatchEnvelope, topic: $topic, envelope: $envelope',
  );

  final message = Uri.decodeComponent(envelope);
  await core.relayClient.handleLinkModeMessage(topic, message);
}