connected property
bool
get
connected
Check to see if the gatt server is connected to the device.
See:
Implementation
bool get connected {
final value = _JSUtil.getProperty(_jsObject, "connected");
if (value is bool) {
return value;
}
return false;
}