source property

T Function(Link<T>, [List<Object?>?]) source
getter/setter pairinherited

The source accessor.

final link = Link.horizontal(…)..source = (thisArg, [args]) => args[0][0];

link.source; // (thisArg, [args]) => args[0][0]

The source accessor defaults to:

source(thisArg, [args]) {
  args[0]["source"];
}

Implementation

T Function(L, [List<Object?>?]) source;