takeFromMap method

void takeFromMap(
  1. Map<String, dynamic>? from, {
  2. bool copyEntries = true,
})
override

Used for meta-forms in setting deep properties

Implementation

void takeFromMap(Map<String, dynamic>? from, {bool copyEntries = true}) {
  if (copyEntries == true && from != null) {
    this.wrapped.addAll(from);
  }
}