copyMap method
Creates a copy of the internal map.
If deepCopy is true, a deep copy is performed.
Otherwise, a shallow copy is returned.
@param deepCopy Whether to perform a deep copy. Defaults to false.
@return A copy of the internal map.
Implementation
@override
Map<String, dynamic> copyMap([bool deepCopy = false]) {
if (deepCopy) {
return Copier.deepCopyMap(_map);
} else {
return Copier.copyMap(_map);
}
}