TestCaseCustomStep.fromJson constructor

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

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'],
  );
}