transformTarget method

void transformTarget(
  1. dynamic source,
  2. dynamic target,
  3. CONTEXT context
)

Modify a target instance by applying all specified operations.

source the source object target the target object context the context object

Implementation

void transformTarget(dynamic source, dynamic target, CONTEXT context) {
  var len  = operations.length;
  for ( int i = 0; i < len; i++) {
    operations[i].setTarget(source, target, context);
  }
}