fromDict static method

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

resume map.

Implementation

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