Mapping.fromMap constructor
Implementation
factory Mapping.fromMap(Map<String, dynamic> map) {
return Mapping(
dataType: map['dataType'],
sourceValue: map['sourceValue'],
sourceField: map['sourceField'],
targetField: map['targetField'],
type: map['type'],
);
}