Dart Documentationchrome.runtimeRuntimeSendMessageParams

RuntimeSendMessageParams class

class RuntimeSendMessageParams extends ChromeObject {
 RuntimeSendMessageParams({bool includeTlsChannelId}) {
   if (includeTlsChannelId != null) this.includeTlsChannelId = includeTlsChannelId;
 }
 RuntimeSendMessageParams.fromProxy(JsObject jsProxy): super.fromProxy(jsProxy);

 /**
  * Whether the TLS channel ID will be passed into onMessageExternal for
  * processes that are listening for the connection event.
  */
 bool get includeTlsChannelId => jsProxy['includeTlsChannelId'];
 set includeTlsChannelId(bool value) => jsProxy['includeTlsChannelId'] = value;
}

Extends

ChromeObject > RuntimeSendMessageParams

Constructors

new RuntimeSendMessageParams({bool includeTlsChannelId}) #

Create a new instance of a ChromeObject, which creates and delegates to a JsObject proxy.

docs inherited from ChromeObject
RuntimeSendMessageParams({bool includeTlsChannelId}) {
 if (includeTlsChannelId != null) this.includeTlsChannelId = includeTlsChannelId;
}

new RuntimeSendMessageParams.fromProxy(JsObject jsProxy) #

Create a new instance of a ChromeObject, which delegates to the given JsObject proxy.

docs inherited from ChromeObject
RuntimeSendMessageParams.fromProxy(JsObject jsProxy): super.fromProxy(jsProxy);

Properties

bool includeTlsChannelId #

Whether the TLS channel ID will be passed into onMessageExternal for processes that are listening for the connection event.

bool get includeTlsChannelId => jsProxy['includeTlsChannelId'];
set includeTlsChannelId(bool value) => jsProxy['includeTlsChannelId'] = value;

final jsProxy #

inherited from ChromeObject
final dynamic jsProxy

Methods

JsObject toJs() #

inherited from ChromeObject
JsObject toJs() => jsProxy;

String toString() #

inherited from ChromeObject

Returns a string representation of this object.

docs inherited from Object
String toString() => jsProxy.toString();