fromDict static method

NucleotideInfo fromDict(
  1. Map<String, dynamic> src
)

resume map.

Implementation

static NucleotideInfo fromDict(Map<String, dynamic> src) {
  return NucleotideInfo(
      decoration: src['decoration'],
      replacement: src['replacement'],
      anotherName: src['anotherName']);
}