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