SendMessageOptions constructor

SendMessageOptions({
  1. bool? includeTlsChannelId,
})

Implementation

SendMessageOptions(
    {
    /// Whether the TLS channel ID will be passed into onMessageExternal for
    /// processes that are listening for the connection event.
    bool? includeTlsChannelId})
    : _wrapped =
          $js.SendMessageOptions(includeTlsChannelId: includeTlsChannelId);