transformChildren<A> method

  1. @override
void transformChildren<A>(
  1. Transformer<A> transformer,
  2. A arg
)
override

Transforms children of this node by invoking transformer with the argument arg.

Implementation

@override
void transformChildren<A>(Transformer<A> transformer, A arg) {
  onTable = transformer.transformChild(onTable, this, arg);
  when = transformer.transformNullableChild(when, this, arg);
  action = transformer.transformChild(action, this, arg);
  target = transformer.transformChild(target, this, arg);
}