Mouth.fromMap constructor

Mouth.fromMap(
  1. Map<String, dynamic> map
)

Transform from map to Mouth

Implementation

factory Mouth.fromMap(Map<String, dynamic> map) {
  return Mouth(
    mouthType: Converter.enumFromJson(MouthType.values, map['mouthType']),
  );
}