MappingEntry.fromJson constructor

MappingEntry.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory MappingEntry.fromJson(Map<String, dynamic> json) {
  return MappingEntry(
    sourcePath: json['SourcePath'] as String?,
    sourceTable: json['SourceTable'] as String?,
    sourceType: json['SourceType'] as String?,
    targetPath: json['TargetPath'] as String?,
    targetTable: json['TargetTable'] as String?,
    targetType: json['TargetType'] as String?,
  );
}