DiffApplyInput.fromJson constructor

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

Implementation

factory DiffApplyInput.fromJson(Map<String, dynamic> json) => DiffApplyInput(
  filePath: json['file_path'] as String,
  diffContent: json['diff_content'] as String,
);