assignTo method

void assignTo(
  1. dynamic value
)

Assigns (copies over) properties from the specified value to this map.

  • value value whose properties shall be copied over.

Implementation

void assignTo(value) {
  if (value == null) return;
  RecursiveObjectWriter.copyProperties(value, innerValue());
}