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