Copy a value from one path to another in the document.
void copy(String fromSelector, String toSelector) { final value = get(fromSelector); set(toSelector, value); }