setTarget method

void setTarget(
  1. dynamic from,
  2. dynamic to,
  3. CONTEXT context
)

Set a target property by reading the appropriate value from the source

from the source object to the target object context the context

Implementation

void setTarget(dynamic from, dynamic to, CONTEXT context) {
  target.set(to, source.get(from, context), context);
}