ParallelDataDataLocation.fromJson constructor

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

Implementation

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