targetProperty property

String get targetProperty

Gets or sets the name of the property to be set on the target GraphObject. The default value is the empty string; you should set this to be the name of a property.

Implementation

_i2.String get targetProperty => _i4.getProperty(
      this,
      'targetProperty',
    );
set targetProperty (String value)

Implementation

set targetProperty(_i2.String value) {
  _i4.setProperty(
    this,
    'targetProperty',
    value,
  );
}