OutOfBandPairingData class
class OutOfBandPairingData extends ChromeObject {
OutOfBandPairingData({ArrayBuffer hash, ArrayBuffer randomizer}) {
if (hash != null) this.hash = hash;
if (randomizer != null) this.randomizer = randomizer;
}
OutOfBandPairingData.fromProxy(JsObject jsProxy): super.fromProxy(jsProxy);
ArrayBuffer get hash => _createArrayBuffer(jsProxy['hash']);
set hash(ArrayBuffer value) => jsProxy['hash'] = jsify(value);
ArrayBuffer get randomizer => _createArrayBuffer(jsProxy['randomizer']);
set randomizer(ArrayBuffer value) => jsProxy['randomizer'] = jsify(value);
}
Extends
ChromeObject > OutOfBandPairingData
Constructors
new OutOfBandPairingData({ArrayBuffer hash, ArrayBuffer randomizer}) #
Create a new instance of a ChromeObject, which creates and delegates to
a JsObject proxy.
docs inherited from ChromeObject
OutOfBandPairingData({ArrayBuffer hash, ArrayBuffer randomizer}) {
if (hash != null) this.hash = hash;
if (randomizer != null) this.randomizer = randomizer;
}
new OutOfBandPairingData.fromProxy(JsObject jsProxy) #
Create a new instance of a ChromeObject, which delegates to the given
JsObject proxy.
docs inherited from ChromeObject
OutOfBandPairingData.fromProxy(JsObject jsProxy): super.fromProxy(jsProxy);
Properties
ArrayBuffer hash #
ArrayBuffer get hash => _createArrayBuffer(jsProxy['hash']);
set hash(ArrayBuffer value) => jsProxy['hash'] = jsify(value);
ArrayBuffer randomizer #
ArrayBuffer get randomizer => _createArrayBuffer(jsProxy['randomizer']);
set randomizer(ArrayBuffer value) => jsProxy['randomizer'] = jsify(value);
Methods
String toString() #
inherited from ChromeObject
Returns a string representation of this object.
docs inherited from Object
String toString() => jsProxy.toString();