ProjectSourceVersion.fromJson constructor
Implementation
factory ProjectSourceVersion.fromJson(Map<String, dynamic> json) {
return ProjectSourceVersion(
sourceIdentifier: json['sourceIdentifier'] as String,
sourceVersion: json['sourceVersion'] as String,
);
}