name property
Get path name.
The human readable name of the path.
This value may be empty if no name has been set.
Returns
- The path name as a String.
Implementation
String get name {
final OperationResult resultString = objectMethod(
pointerId,
'Path',
'getName',
);
return resultString['result'];
}
Set path name.
Sets the human readable name for this path.
Parameters
name: The new name for the path.
Implementation
set name(final String name) {
objectMethod(pointerId, 'Path', 'setName', args: name);
}