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