factory DataModel.fromJson(Map<String, dynamic> json, List<StepModel> steps) { return DataModel( id: json['id'], type: json['type'], slug: json['slug'], steps: steps, ); }