Dart Documentationchrome.bluetoothGetServicesOptions

GetServicesOptions class

Options for the getServices function.

class GetServicesOptions extends ChromeObject {
 GetServicesOptions({String deviceAddress}) {
   if (deviceAddress != null) this.deviceAddress = deviceAddress;
 }
 GetServicesOptions.fromProxy(JsObject jsProxy): super.fromProxy(jsProxy);

 String get deviceAddress => jsProxy['deviceAddress'];
 set deviceAddress(String value) => jsProxy['deviceAddress'] = value;
}

Extends

ChromeObject > GetServicesOptions

Constructors

new GetServicesOptions({String deviceAddress}) #

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

docs inherited from ChromeObject
GetServicesOptions({String deviceAddress}) {
 if (deviceAddress != null) this.deviceAddress = deviceAddress;
}

new GetServicesOptions.fromProxy(JsObject jsProxy) #

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

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

Properties

String deviceAddress #

String get deviceAddress => jsProxy['deviceAddress'];
set deviceAddress(String value) => jsProxy['deviceAddress'] = 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();