takeFromMap method
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);
}
}
Used for meta-forms in setting deep properties
void takeFromMap(Map<String, dynamic>? from, {bool copyEntries = true}) {
if (copyEntries == true && from != null) {
this.wrapped.addAll(from);
}
}