call abstract method

  1. @override
String? call([
  1. List<Object?>? args
])

Generates a link for the given args.

link([{"source": [100, 100], "target": [300, 300]}]) // "M100,100C200,100,200,300,300,300"

The args are arbitrary; they are propagated to the link generator’s accessor functions along with the this object. With the default settings, an object with source and target properties is expected in the first position.

Implementation

@override
call([List<Object?>? args]);