ParallelDataDataLocation.fromJson constructor
Implementation
factory ParallelDataDataLocation.fromJson(Map<String, dynamic> json) {
return ParallelDataDataLocation(
location: json['Location'] as String,
repositoryType: json['RepositoryType'] as String,
);
}