DeleteFileOutput.fromJson constructor

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

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,
  );
}