DeleteRepositoryOutput.fromJson constructor

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

Implementation

factory DeleteRepositoryOutput.fromJson(Map<String, dynamic> json) {
  return DeleteRepositoryOutput(
    repositoryId: json['repositoryId'] as String?,
  );
}