CustomStep.fromJson constructor

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

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