PutFileOutput.fromJson constructor

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

Implementation

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