notifyWebMessageReceived method

void notifyWebMessageReceived(
  1. String message
)

Implementation

void notifyWebMessageReceived(String message) {
  for (final callback in _onWebMessageReceivedCallbacks) {
    callback(message);
  }
}