TestCaseCustomStep.fromJson constructor
Implementation
factory TestCaseCustomStep.fromJson(Map<String, dynamic> json) {
return TestCaseCustomStep(
additionalInfo: json['additional_info'],
content: json['content'],
expected: json['expected'],
refs: json['refs'],
sharedStepId: json['shared_step_id'],
);
}