DeleteRepositoryResponse.fromJson constructor
Implementation
factory DeleteRepositoryResponse.fromJson(Map<String, dynamic> json) {
return DeleteRepositoryResponse(
repository: json['repository'] != null
? Repository.fromJson(json['repository'] as Map<String, dynamic>)
: null,
);
}