target property
The target accessor.
final link = Link.horizontal(…)..target = (thisArg, [args]) => args[0][1];
link.target; // (thisArg, [args]) => args[0][1]
The target accessor defaults to:
target(thisArg, [args]) {
args[0]["target"];
}
Implementation
T Function(L, [List<Object?>?]) target;