deepCopy method
deep copy.
Implementation
NucleotideInfo deepCopy() {
return NucleotideInfo(
decoration: decoration != null ? {...decoration!} : null,
replacement: replacement != null ? {...replacement!} : null,
anotherName: anotherName);
}