cloneMap function
- Map value
Clone a map to make it writable.
This should be used to create a writable object that can be modified
Implementation
Map<String, dynamic> cloneMap(Map value) =>
cloneValue(value) as Map<String, dynamic>;
Clone a map to make it writable.
This should be used to create a writable object that can be modified
Map<String, dynamic> cloneMap(Map value) =>
cloneValue(value) as Map<String, dynamic>;