sendNotification method

void sendNotification(
  1. String method, [
  2. Notification? notification
])
inherited

Sends a notification to the peer.

Implementation

void sendNotification(String method, [Notification? notification]) =>
    _peer.isClosed ? null : _peer.sendNotification(method, notification);