authenticatedSignedWrites property

bool authenticatedSignedWrites

Check to see if authenticated signed writes is available in this characteristic.

Will return false if the field doesn't exist.

See:

Implementation

bool get authenticatedSignedWrites {
  if (!hasAuthenticatedSignedWrites) {
    return false;
  }
  final result = _JSUtil.getProperty(_jsObject, "authenticatedSignedWrites");
  if (result is bool) {
    return result;
  }
  return false;
}