set abstract method

void set(
  1. ClonableBaseInterface<T> obj, {
  2. bool deep = false,
})

Sets this object as a copy of obj

If deep is true it will perform a deep/recursive set (i.e. clones filed values in case they are clonable objects)

Implementation

void set(ClonableBaseInterface<T> obj, {bool deep = false});