name property

String get name

Get path name.

The human readable name of the path.

This value may be empty if no name has been set.

Returns

Implementation

String get name {
  final OperationResult resultString = objectMethod(
    pointerId,
    'Path',
    'getName',
  );

  return resultString['result'];
}
set name (String name)

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);
}