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) {
  if (onColumns != null) {
    onColumns = transformer.transformChildren(onColumns!, this, arg);
  }
  where = transformer.transformNullableChild(where, this, arg);
  action = transformer.transformChild(action, this, arg);
}