DeleteFileOutput.fromJson constructor
Implementation
factory DeleteFileOutput.fromJson(Map<String, dynamic> json) {
return DeleteFileOutput(
blobId: json['blobId'] as String,
commitId: json['commitId'] as String,
filePath: json['filePath'] as String,
treeId: json['treeId'] as String,
);
}