deepCopy method
dynamic
deepCopy()
Implementation
dynamic deepCopy() {
if (this is Map || this is List) {
return json.decode(json.encode(this));
} else if (this is String) {
String newValue = this;
return newValue;
}
return null;
}