UStepNavigation.fromJson constructor
Implementation
factory UStepNavigation.fromJson(Map<String, dynamic> json) => UStepNavigation(
enableNextCondition: json["enableNextCondition"],
nextButtonLabel: json["nextButtonLabel"],
previousButtonLabel: json["previousButtonLabel"],
conditionalNextStep: json["conditionalNextStep"],
conditionalNextCondition: json["conditionalNextCondition"],
);