BatchDescribeMergeConflictsError.fromJson constructor

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

Implementation

factory BatchDescribeMergeConflictsError.fromJson(Map<String, dynamic> json) {
  return BatchDescribeMergeConflictsError(
    exceptionName: json['exceptionName'] as String,
    filePath: json['filePath'] as String,
    message: json['message'] as String,
  );
}