sendNotification method

void sendNotification(
  1. String method,
  2. Object? params
)

Sends a notification to the peer.

Implementation

void sendNotification(String method, Object? params) =>
    writeMessage({'jsonrpc': '2.0', 'method': method, 'params': params});