deepCopy method

NucleotideInfo deepCopy()

deep copy.

Implementation

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