MergeBranchesByFastForwardOutput.fromJson constructor

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

Implementation

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