setAlias method

Future<void> setAlias(
  1. String value
)

Sets the alternative name for this device.

Implementation

Future<void> setAlias(String value) async {
  await _object.setProperty(_deviceInterfaceName, 'Alias', DBusString(value));
}